본문 바로가기

뇌/Diary

17/05/25 # spring interceptor의 preHandle, postHandlepreHandle은 controller 작업 전 수행postHandle은 controller 작업 후 수행 # controller단에서 exception을 throw할 경우(1) dispatcher에서 처리하게 된다.저는 다음과 같이 exception resolver를 등록하여 Controller 에서 try catch로 예외를 잡지 않고, DispatcherServlet으로 모두 던집니다. common/error/businessLogicErrorcommon/error/runtimeErrorcommon/error/defaultError 2013년 12월 12일 오전 9:47, Shin-Hyeong Song 님의 말: (2) @E.. 더보기
17/05/24 # classpath의 path?(1) src/main/resources 폴더에 해당(2) build 시 /WEB-INF/classes #이 가능한 이유.properties가 붙으면 빌드시 messages.properties => messages/properties 로 생성해주는듯? # spring message tag1) jsp단에서 사용2) 속성들arguments :: 부가적인 인자를 넘겨줄 수 있다. 콤마로 구분된 문자열, 객체 배열, 객체 하나를 넘길 수 있다. argumentSeparator :: 넘겨줄 인자들의 구분자를 설정한다. 기본값은 콤마 code :: 룩업할 메시지의 키를 지정해줌. 지정하지 않으면 text에 입력한 값을 출력함. htmlEscape :: 기본값 false. html 기.. 더보기
17/02/08 1. javascript sort json 배열을 정렬@param array json배열@param key json에서 검색에 사용할 값의 key12345function sortByKey(array, key){ array.sort(function(a, b){ return a[key] b[key] ? 1 : 0; })}Colored by Color Scriptercs 2. jquery $.inArray(value, array)배열에 값이있으면 return 해당 indexreturn 값이 없으면 -1 3. bootstrap tooltip사용 중 js를 이용하여 custom하는 방법이 먹히지 않아 애먹었다. element에 attribute로 박아버리니 원하는대로 동작했다.1csbootstrap tooltip.. 더보기