분류 전체보기 (198) 썸네일형 리스트형 [Mybaatis(Mysql)] LAST_INSERT_ID() returns 0 등록한 메인 게시글의 주키를 사용해서, 서브 글에서 키 값을 사용하고 싶었다. 따라서 LAST_INSERT_ID()를 사용했지만, 리턴 값이 0을 준다. https://stackoverflow.com/questions/13880267/mysql-last-insert-id-returns-0의 댓글을 살펴보면, LAST_INSERT_ID()는 오류가 많이 발생하는 거 같다.. 따라서, useGeneratedKeys, keyProperty 옵션을 이용해서 대체했다. 자세한 사용법:https://taetaetae.github.io/2017/04/04/mybatis-useGeneratedKeys/ HTML 특수문자 변환 1. & 에서 & 형태로 변환 public static String toTEXT(String str) { if(str == null) return null; String returnStr = str; returnStr = returnStr.replaceAll(" ", "\n"); returnStr = returnStr.replaceAll(">", ">"); returnStr = returnStr.replaceAll("<", " [Jquery]Mask Plgin 사용 jquery mask는 form 필드나 Html elements의 형태를 표시하기 위한 jquery plugin이다. 유저 데이터를 전화번호나 우편번호와 같이 원하는 형태의 데이터를 모으기 위해서 유용하게 사용할 수 있다. Date Example Postal Code Example Phone Number Example $('input[name="date"]').mask('00/00/0000'); $('input[name="postal-code"]').mask('S0S 0S0'); $('input[name="phone-number"]').mask('(000) 000 0000'); $('input[name="postal-code"]').focusout(function() { $('input[name="pos.. [Handlebar]Block 사용하기(조건에 따른 구문) Ajax와 Handlebars를 이용했을 때, 조건에 따라서 만들어진 문장을 구별할 때 사용할 수 있는 Block Basic Blocks For demonstration purposes, let's define a block helper that invokes the block as though no helper existed. {{title}} {{#noop}}{{body}}{{/noop}} The noop helper (short for "no operation") will receive an options hash. This options hash contains a function (options.fn) that behaves like a normal compiled Handlebars templ.. root~.xml과 servlet.xml 두 곳에 component-scan을 사용하면 충돌 root-context.xml에 servlet-context.xml에 충돌나서 서로 못 읽는 듯? 오류: INFO : org.springframework.web.context.ContextLoader - Root WebApplicationContext: initialization started INFO : org.springframework.web.context.support.XmlWebApplicationContext - Refreshing Root WebApplicationContext: startup date [Wed Jan 17 10:45:16 KST 2018]; root of context hierarchy INFO : org.springframework.beans.factory.xml.XmlB.. 프로젝트 파일 UTF-8 https://blog.jetbrains.com/idea/2013/03/use-the-utf-8-luke-file-encodings-in-intellij-idea/ @Override is not allowed when implementing interface method https://stackoverflow.com/questions/15402615/override-is-not-allowed-when-implementing-interface-method Script 삽입 위치 자바스크립트 삽입방식 자바스크립트를 실행하는 방법은 문서안에 태그를 이용해 작성하거나 외부의 스크립트 파일을 링크하는 것이다. Html //코드내용 type="text/javascript" 부분은 HTML5에서는 생략할 수 있다. 문서의 어느 곳이든 스크립트 배치에 제한을 두지 않는다. 전자의 경우는 간단한 스크립트의 경우이거나 해당 문서에만 적용되는 코드들, 초기화등에 자주 사용된다. 후자의 경우는 반복사용되는 코드들을 파일별로 저장해두고 필요에 따라 링크해 사용되곤 한다. 이와 같은 방식이 코드의 가독성과 실행순서, 의존성들을 확인하기에 수월하기 때문에 추천되는 방식이다. 자바스크립트 삽입 위치 브라우저는 HTML의 구조와 CSS 스타일을 렌더링하는 도중 자바스크립트를 만나게 되면 이에 대한 해석과 .. 이전 1 ··· 15 16 17 18 19 20 21 ··· 25 다음