반응형 분류 전체보기377 [스프링/전자정부] 전자정부 프레임워크 iBATIS tutorial [출처, 현재 접근 불가] http://toolsqa.com/ibatis/ibatis-tutorial/ Tools QA - Page Not Found © 2013- ToolsQA.com | All rights reserved toolsqa.com iBatis는 꽤 이전 프레임워크로, 내가 개발하던 2018년 대에도 MyBatis를 쓰는 추세였다. 오랜만에 문서를 정리하는데 이 문서의 출처 페이지도 사라졌다. 그래도 일부 내용을 확인할 수 있기에 남겨둔다. iBATIS Introduction iBATIS is a persistence framework which automates the mapping between SQL database objects (e.g. tables) and objects in J.. 2017. 11. 16. [MySQL] MySql 환경 변수 설정 방법 내 PC -> 마우스 오른쪽 클릭 -> 속성 - >고급 시스템 설정 \MYSQL Server 5.7 의 bin 까지 path를 추가합니다. cmd 창에서 mysql -V 입력 하여 버전을 확인합니다. 2017. 11. 16. [HTML/CSS] <textArea> placeholder 안보이는 이유 https://stackoverflow.com/questions/10585759/why-isnt-my-textareas-placeholder-showing-up Why isn't my textarea's placeholder showing up? I am using placeholders for all my form elements and it's showing up in them all apart from the textarea. Just looked at it in safari now, and have realised that my input of type="number" isn't sh... stackoverflow.com textArea 를 열고 닫는 태그 는 html안에서 한 줄로 작성해야 합니.. 2017. 11. 1. [HTML/CSS] div를 넘어가는 글씨 안 보이도록 처리하려면? { overflow: hidden; text-overflow: ellipsis; } 위는 예시 중 하나입니다. 아래에 첨부한 링크를 보시면 div 안 content control 능력은 웬만큼 갖출 수 있습니다. text-overflow에 관한 mdn_web_docs https://developer.mozilla.org/en-US/docs/Web/CSS/text-overflow text-overflow - CSS: Cascading Style Sheets | MDN The text-overflow CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('…'), or .. 2017. 10. 28. [Mybatis] 쿼리 파라미터 null 처리방법 myBatis와 iBatis에서 쿼리를 실행할때 PrepareStatement 방식으로 작동을 하게 되고 이때 쿼리로 전달값은 값을 각각 아래처럼 적용한다. INSERT INTO table (id , name, title) VALUES (#id#, #name#, #title#) INSERT INTO table (id , name, title) VALUES (#{id}, #{name}, #{title}) 그런데 이때 insert 하려는 값 중에 null이 전달되었을 경우 오라클에서는 uncategorized SQLException for SQL []; SQL state [99999]; error code [17004]; 부적합한 열 유형: 1111; nested exception is java.sql.SQ.. 2017. 10. 16. 이전 1 ··· 69 70 71 72 73 74 75 76 다음 반응형