일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Exception
- 오픈소스
- AJAX
- 설정
- myBatis
- Eclipse
- Core Java
- Open Source
- JavaScript
- PostgreSQL
- SpringBoot
- oracle
- MSSQL
- Docker
- 문서
- IntelliJ
- jpa
- Thymeleaf
- spring
- Spring Boot
- error
- Source
- git
- ubuntu
- STS
- Tomcat
- maven
- JDBC
- Python
- MySQL
- Today
- Total
목록Exception (114)
헤르메스 LIFE
Spring Application을 war로 아카이브 배포할때 아래와 같은 exception이 발생할때가 있습니다. SEVERE: Exception sending context initialized event to listener instance of class org.springframework.web.util.Log4jConfigListenerjava.lang.IllegalStateException: Cannot set web app root system property when WAR file is not expandedat org.springframework.web.util.WebUtils.setWebAppRootSystemProperty(WebUtils.java:140) 참고 ( 도전의 미학 :..
Tomcat을 Start 시키자 아래와 같은 Exception이 발생하였습니다. 경고: Unexpected exception resolving referenceorg.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.)at org.apache.commons.dbcp.BasicDataSource.createPoolableConnection..
원문 : http://javapattern.blogspot.kr/2008/02/spring-framework-log4jconfiglistener.html java.lang.IllegalStateExceptionWeb app root system property already set to different value: - Choose unique values for the 'webAppRootKey' context-param in your web.xml files! 해결 방법: 컨텍스트 파라미터webAppRootKey의 값을 설정해준다. webAppRootKey의 디폴트 값은 webapp.root임 예) webAppRootKey myProject_name.root
개발환경 Tomcat MySQL mysql-connector-java-5.1.20.jar 사용 [2012-06-04] ERROR: java.sql.Connection - Error calling Connection.setAutoCommit: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet successfully received from the server was 7 milliseconds ago. The last packet sent successfully to the server was 6 milliseconds ago. at sun.reflect.NativeConstru..
Spring의 constructor-arg 사용 시 파라메터의 개수가 틀린경우 발생하는 Exception입니다. 1. bean의 class 연결이 잘못되었을 경우 2. constructor-arg의 index, type, name 등의 속셩이 잘못 정의 된 경우 3. constructor-arg의 개수가 다른 경우
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'urlMapping' defined in ServletContext resource [/WEB-INF/classes/tims2-common.xml]: Cannot resolve reference to bean 'topFrameController' while setting bean property 'urlMap' with key [TypedStringValue: value [/topFrame.do], target type [null]]; nested exception is org.springframework.beans.factory.BeanCreati..
문제는 Tomcat의 Startup.bat 실행 시 오류가 발생한다는데 있습니다. host-manager 폴더와 manager 폴더가 없다는 겁니다. Tomcat 5.5 버젼에서는 아래와 같은 오류가 발생하지 않았습니다. 6.x 버젼으로 버젼업되면서 뭔가가 달라졌다는 얘기인 듯 한데.. 문제만 있지 해결방법은 없더군요.. ㅡㅡ;; (우리의 Naver와 Google에도 OTL... 제가 영어가 짧아서 못 찾았을 수도 있습니다. ^^;;) 심각: Error starting static Resources java.lang.IllegalArgumentException: Document base C:\AutoPlus\bin\Tomcat-6.0.29\ host-manager does not exist or is n..
Java 1.3에서 개발된 내용을 1.6으로 Upgrade 했을 경우 발생하는 Error입니다. %TOMCAT_HOME%/conf/web.xml 파일을 변경해야 합니다. jsp org.apache.jasper.servlet.JspServlet fork false xpoweredBy false 3 이렇게 바꾸면 됩니다. jsp org.apache.jasper.servlet.JspServlet fork false compilerSourceVM 1.6 compilerTargetVM 1.6 xpoweredBy false 3 심각: Javac exception Compile failed; see the compiler error output for details. at org.apache.tools.ant.tas..
transactionManager가 선언이 되어 있지 않아서 입니다. 셈플.. 심각: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'txAdvice': Cannot resolve reference to bean 'transactionManager' while setting bean property 'transactionManager'; nested exception is..