목록분류 전체보기 (556)
른록노트
overflow:scroll; 속성사용 참고사이트http://mwultong.blogspot.com/2006/06/html-css-div-scroll-bar.html
저는 Color Scripter 쓰는데 위에 크래용 신텍스 하이라이터도 좋은것 같습니다. Color Scripter Crayon syntax highlighter 참고사이트https://colorscripter.com/https://ko.wordpress.org/plugins/crayon-syntax-highlighter/
$(this).find("option[value='" + $(this).val() + "']").text()); 참고사이트http://blog.freezner.com/archives/1803
The web application [] registered the JDBC driver [oracle.jdbc.OracleDriver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered. 원인등록된 JDBC Driver가 미등록 상태로 변경하던 중 실패가 되서 memory leak이 발생함.강제적으로 미등록 상태로 만들어야 한다고 함. 해결웹 어플리케이션 WEB-INF/lib에 jdbc 라이브러리를 tomcat의 lib 밑으로 옮겨서 관리함. 참고사이트http://egloos.zum.com/utils/v/3..
slf4j-log4j 등 tomcat안에서 lib들이 뒤섞여서 발생했을 가능성이 있다. maven으로 작성 했을경우 dependency를 다시 설치한다. google에선 tomcat-lib 폴더에 jdbc 라이브러리를 넣어줘야한다고 하는데, 그렇게 조치해봐도 안되서 아예 라이브러리를 다시 받으니 작동하였다.
df : 디스크의 남은 용량을 확인 df -k : 킬로바이트 단위로 현재 남은 용량을 확인df -m : 메가바이트 단위로 남은 용량을 왁인 df -h : 보기 좋게 보여줌df . : 현재 디렉토리가 포함된 파티션의 남은 용량을 확인 du : 현재 디렉토리에서 서브디렉토리까지의 사용량을 확인 du -a : 현재 디렉토리의 사용량을 파일단위 출력du -s : 총 사용량을 확인du -h : 보기 좋게 바꿔줌 du -sh * : 한단계 서브디렉토리 기준으로 보여준다. 참고사이트http://ra2kstar.tistory.com/135
$.ajax() 사용방법비동기 요청 시 사용하는 $.ajax() 1234567891011121314$.ajax({ url: 'example.php' // 요청 할 주소 async: true, // false 일 경우 동기 요청으로 변경 type: 'POST' // GET, PUT data: { Name: 'ajax', Age: '10' }, // 전송할 데이터 dataType: 'text', // xml, json, script, html beforeSend: function(jqXHR) {}, // 서버 요청 전 호출 되는 함수 return false; 일 경우 요청 중단 success: function(jqXHR) {}, // 요청 완료 시 error: function(jqXHR) {}, // 요청 ..
LocaleChangeInterceptor는 사용자가 url를 통해서 언어를 변경할 경우 사용한다. 만약 홈경로가 http://localhost/home이라고 하면 ?lang=언어값을 붙여서 사용한다.http://localhost/home/?lang=kohttp://localhost/home/?lang=enhttp://localhost/home/?lang=ja그렇게 되면 링크를 통해 언어변환처리를 할 수 있다. 로 감싸면 Spring MVC에서 controller를 통해서 접근시 가로채서 LocaleChangeInterceptor를 적용하게 된다. 참고사이트http://yookeun.github.io/java/2015/08/12/spring-i18n/