반응형 [프로그래밍]77 WARN : org.springframework.web.servlet.PageNotFound WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/login/loginInit.go] in DispatcherServlet with name 'appServlet' 해결servlet-context.xml에 component-scan 추가 혹은 수정예) by. 조조나리 2015. 12. 2. 스프링 시큐리티 참고자료 스프링 시큐리티 참고자료 [SpringCamp2013] Spring Security 활용과 사례 (유투브)https://www.youtube.com/watch?v=LJ0SwSaT4FY 첫번째 예제 : github.com/sbcoba/spring-camp-spring-security-session두번쨰 예제 : github.com/sbcoba/spring-camp-spring-security-session2 사랑이 고픈프로그래머 (블로그)http://zgundam.tistory.com/category/%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%B0%8D/Spring%20Security by. 조조나리 2015. 12. 2. IT용어 정리 virtual IP address(가상 인터넷 주소) : VIP는 하나의 호스트에 여러 개의 IP주소를 할당하는 기술 이 기술을 이용하면, 하나의 네트워크 인터페이스에 여러 개의 IP 주소를 줄 수 있다.참고http://ohgyun.com/495 Script(스크립트) : 소프트웨어에 실행시키는 처리 절차를 문자(텍스트)로 기술한 것. 일종의 프로그램이라고 할 수 있다. 일반적으로 응용 프로그램이나 유틸리티의 규칙과 구문(syntax)을 사용하여 표현된 명령어들과 루프(loop), 이프-덴(IF/THEN) 등 단순한 제어 구조의 조합으로 구성된다. 응용 프로그램이나 운영 체계(OS)상에서 최종 사용자가 제어할 수 있는 절차를 조합한 일련의 처리를 자동화하기 위해 이용한다. 2015. 12. 2. The reference to entity "characterEncoding" must end with the ';' delimiter. [Fatal Error] :4:84: The reference to entity "characterEncoding" must end with the ';' delimiter. 다음과 같이 &를 &로 변경한다. 2015. 11. 21. 마이바티스 대소문자 구분에러 이클립스툴에 뜨는 에러 메시지The content of element type "select" must match "(include|trim|where|set|foreach|choose|if|bind)". 콘솔 로그Caused by: org.apache.ibatis.builder.BuilderException: Error creating document instance. Cause: org.xml.sax.SAXParseException; lineNumber: 36; columnNumber: 63; 요소 유형 "IF"을(를) 선언해야 합니다. AND idx = '1' * IF 대문자를 소문자 if로 변경 AND idx = '1' 2015. 11. 18. Eclipse SVN Connector 설치 에러시 Eclipse SVN Connector 설치 에러시 웹사이트https://www.polarion.com/products/svn/subversive/download 에 접속해서 [required] Subversive SVN Connectors 의 좌측 url로 이클립스에서 설치 하면 최신버전으로 설치 할 수 있음 현재 최신버전 URL : http://community.polarion.com/projects/subversive/download/eclipse/5.0/update-site/ URL을 복사해서 Eclipse의 상단 메뉴 help – Install New Software에서 설치 할수 있음 by. 조조나리 2015. 11. 14. Unsupported major.minor version 52.0 ERROR Unsupported major.minor version 52.0- jdk8이하 버전사용으로 인한 에러 jdk8로 컴파일 해야함 2015. 11. 10. JAVA - 한글 인코딩 변환 체크 한방에 끝내기 JAVA - 한글 인코딩 변환 체크 한방에 끝내기 String word = "무궁화 꽃이 피었습니다.";System.out.println("utf-8 -> euc-kr : " + new String(word.getBytes("utf-8"), "euc-kr"));System.out.println("utf-8 -> ksc5601 : " + new String(word.getBytes("utf-8"), "ksc5601"));System.out.println("utf-8 -> x-windows-949 : " + new String(word.getBytes("utf-8"), "x-windows-949"));System.out.println("utf-8 -> iso-8859-1 : " + new String(wor.. 2015. 11. 5. 셀렉트박스관련 셀렉트 박스 동시제어 //첫번째 선택$('select').find('option:first').attr('selected', 'selected'); 2015. 10. 28. 이벤트버블링 방지를 위한 코드 // 이벤트버블링 방지를 위한 코드event.stopPropagation(); 버블링이 발생한 함수 제일 아래에 넣는다.// 이벤트버블링 방지를 위한 코드this.unbind(“click”);버블링이 발생한 함수선언 바로 위에 넣는다. ex:)$('#progressbar_modal2').unbind('shown.bs.modal');$('#progressbar_modal2').on('shown.bs.modal', function(){ 2015. 10. 27. 로컬스토리지 사용 webview.getSettings().setDomStorageEnabled(true); webview.getSettings().setDatabaseEnabled(true); if (Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT) { webview.getSettings().setDatabasePath("/data/data/" + webview.getContext().getPackageName() + "/databases/"); } 2015. 8. 5. crosswalk-project : 웹뷰를 크롬브라우저로 교체 크로스워크 프로젝트 : 미완단계https://crosswalk-project.org/ 2015. 5. 14. 좌측 슬라이드 메뉴만들기 출처 : http://www.android-town.org/ 2015. 5. 13. Tomcat7 tomcat-jdbc 설정 - Broken pipe 에러 회피 Tomcat7 tomcat-jdbc 설정 - Broken pipe 에러 회피 [출처] Tomcat7 tomcat-jdbc 설정 - Broken pipe 에러 회피|작성자 소프 tomcat-jdbc로 MySQL에 연결한 경우 "java.net.SocketException: Broken pipe" 에러가 발생하는 경우를 가끔 볼 수 있다. 대부분의 경우 connection idle time이 MySQL에 설정된 wait_timeout을 지나서 DB에서 연결을 끊은 것이다. 이를 방지하려면 connection이 일정 기간동안 사용되지 않으면 close되도록 설정하거나 connection 대여시에 connection을 체크하도록 하면 된다. 설정 1 - 일정 기간동안 사용되지 않으면 connection을 테스트.. 2015. 4. 6. 스프링 MVC에서 SimpleMappingExceptionResolver 사용시 로그남기기 스프링 MVC에서 SimpleMappingExceptionResolver를 서블릿 컨텍스트 설정 파일에 선언하게 되면 예외발생시 에러페이지를 브라우저에 노출시켜준다. 하지만 에러 로그가 남지 않는 문제가 있다. egovframework/com/cmm/error/egovError egovframework/com/cmm/error/egovError egovframework/com/cmm/error/dataAccessFailure egovframework/com/cmm/error/dataAccessFailure egovframework/com/cmm/error/egovBizException stalk/mbl/login/UserLogin DispatcherServlet 소스를 확인 catch (Exception.. 2015. 3. 31. Error configuring application listener of class org.springframework.web.context.ContextLoaderListener Error문구 1심각: Error configuring application listener of class org.springframework.web.context.ContextLoaderListenerjava.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListenerError문구 2SEVERE: Error configuring application listener of class org.springframework.web.util.Log4jConfigListener java.lang.ClassNotFoundException: org.springframework.web.util.Log4jConfigListener .. 2015. 3. 26. 정보: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: Error 문구정보: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path:경로~ 1. tomcat-native-1.1.23-win32-bin.zip 다운로드 http://archive.apache.org/dist/tomcat/tomcat-connectors/native/1.1.23/binaries/ 2. C:\Program Files\Java\jdk1.6.0_31\bin에 압축풀고 3. tcnative-1.dll를 C:\Program Files\Java\jdk1.6.0_31\bin 에 올려두면 톰캣 재시작.. 2015. 3. 26. 페이지이동 안될 때 a 태그등으로 페이지 이동스 스크립트 동작을 안할 때TEST 페이지 이동 2015. 3. 19. 이전 1 2 3 4 5 다음 반응형