본문 바로가기

[Node, Nuxt] 웹서버 로컬 접속은 되는데, 외부 접속은 안되는 경우 # 증상로컬에선 정상적으로 서버가 올라가고, 접속도 되지만, 외부에서 접근할 수 없음. # 해결HOST = 0.0.0.0으로 설정해준다. # 팁호스트나 포트를 지정할 때, 윈도우나 리눅스의 지정 방법이 다르므로 cross-env 를 사용하면 좋다. 더보기
[intelliJ] 단축키 등 팁 정리 # 단축키 범위선택 ctrl + w 반복입력 주석선택/해제 ctrl + z 범위주석/해제 ctrl + shift + z 줄 삭제 ctrl + y 줄 복사 ctrl + d 줄 이동 ctrl + shift + 방향키 동일레벨 코드 이동 alt + 방향키 파라미터 보기 ctrl + p 정보 보기 ctrl + q 모든 파일 내 문자 검색 ctrl + shift + f 파일 검색 ctrl + shift + n 통합 검색(테이블명까지 조회) shift 두번 최근 편집 문서/테이블 보기 ctrl + e 코드 줄임 처리/해제 ctrl + . 자동 import ctrl + alt + o 자동완성 ctrl + space 코드 추적 ctrl + b 코드 감싸기 ctrl + alt + t 퀵매뉴창 호출 alt + 1 ~ 9 .. 더보기
[Spring] Interceptor에서 Ajax요청 구분하기 # request Header의 'X-Requested-With'가 'XMLHttpRequest'인지 확인한다.if ("XMLHttpRequest".equals(request.getHeader("X-Requested-With"))) {...} 참고로 X-Requested-With의 접두사 'X'는 표준이 아니지만, jQuery등 대중성 있는 라이브러리들이이 헤더를 Ajax시 추가하여 전송하고 있다고 한다.참조 : http://mohwaproject.tistory.com/entry/Ajax-%EC%A0%84%EC%86%A1-%EA%B5%AC%EB%B6%84%ED%95%98%EA%B8%B0 더보기
[Bootstrap] tooltip js가 먹히지 않을 경우 # bootstrap tooltip사용 중 js를 이용하여 custom하는 방법이 먹히지 않아 애먹었다.element에 attribute로 박아버리니 원하는대로 동작했다.1csbootstrap tooltip javascript reference : http://www.w3schools.com/bootstrap/bootstrap_ref_js_tooltip.asp 더보기
[jQuery] $.inArray(value, array) - 배열의 값 유무 확인 # jquery $.inArray(value, array)배열에 값이있으면 return 해당 indexreturn 값이 없으면 -1 더보기
[JavaScript] JSON 배열 단순 정렬하기 12345function sortByKey(array, key){ array.sort(function(a, b){ return a[key] b[key] ? 1 : 0; })}Colored by Color Scriptercs 더보기
[IntelliJ] PermGen space 에러 https://stackoverflow.com/questions/8677831/tomcat-7-spring-app-intellij-idea-10-5-outofmemoryerror-permgen-space 더보기
[MSSql]ISNUMERIC # ISNUMERIC데이터 자료형이 varchar로 지정되어있지만, 값이 int로만 구성되어 있는지 확인해주는 함수ISNUMERIC([COL]) return 1 / 0 더보기
[Mybatis] 쿼리 예쁘게 출력, DB에 저장하기 1. maven dependency 추가12345 org.lazyluke log4jdbc-remix 0.2.7cs 2. dataSource 설정: dataSource를 net.sf.log4jdbc.Log4jdbcProxyDataSource클래스를 사용한 빈으로 교체12345678910111213141516 Colored by Color Scriptercs 3. log4j 설정: result는 ERROR 레벨에서만 확인하도록 수정1234567891011 Colored by Color Scriptercs - #%p debug, info, warn, error, fatal 등의 priority 가 출력된다. #%m 로그내용이 출력됩니다 #%d 로깅 이벤트가 발생한 시간을 기록합니다.# 포맷은 %d{HH:mm:.. 더보기
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.. 더보기