일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- maven
- Tomcat
- oracle
- git
- 문서
- Docker
- Thymeleaf
- Python
- Spring Boot
- ubuntu
- STS
- JavaScript
- Core Java
- jpa
- myBatis
- IntelliJ
- 오픈소스
- AJAX
- Eclipse
- MSSQL
- error
- JDBC
- SpringBoot
- Open Source
- MySQL
- Source
- spring
- Exception
- 설정
- PostgreSQL
- Today
- Total
목록Exception (56)
헤르메스 LIFE
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..
개발환경 : Eclipse 3.5(Galileo) Java Project 개발 중 아래와 같은 ERROR이 발생했습니다. 내용은 '필수 라이브러리의 제한에 의해 액세스 할 수 없다'라는 메시지입니다. 이 메시지는 정확하게 컴파일오류는 아닙니다. 그런데, 빨강으로 표시되서 기분이 안좋을 뿐이져.. ㅡㅡ;; Multiple markers at this line - Access restriction: The type SunJCE is not accessible due to restriction on required library C:\jdk1.6.0_21\jre\lib\ext\sunjce_provider.jar - Access restriction: The constructor SunJCE() is not a..
개발환경 Tomcat 6.x Eclipse : 3.5(Galileo) 프레임웍 : Spring 2.x iBatis Eclipse에서 Tomcat Server를 구동하고 JDBC를 연결하려고 했으나, Exception이 발생하였습니다. 당연히 JDBC Driver를 찾지 못해서 발생하는 문제입니다. 해결방방 1. JDBC Driver를 classpath가 연결되 있는 곳에 넣어줘야 합니다. 저의 경우는 WEB-INF/lib 폴더 아래에 뒀습니다. 해결방법 2. JNDI 설정이 문제가 되는 것 같습니다. Data Source 연결에 대한 설정을 Tomcat 서버에서 인식하지 못해서 발생하지 않았을 까 생각됩니다. 연결방법 : [Tomcat] Tomcat에서의 JNDI JDBC 설정 저의 경우는 3번으로 설정..
DBCP 테스트 중 아래와 같은 에러발생시... org.apache.commons.dbcp.SQLNestedException: Cannot create JDBC driver of class ' ' for connect URL 'null'
iBatis를 사용할 때 발생하는 Exception입니다. 뭐~ 워낙 많이 발생하는 Exception이고, 경우의 수도 많습니다. 경우 1. com.ibatis.common.jdbc.exception.NestedSQLException: --- The error occurred while applying a parameter map. --- Check the catalog-sql.catalogSrch-InlineParameterMap. --- Check the statement (query failed). --- Cause: java.sql.SQLException: ORA-00923: FROM 키워드가 필요한 위치에 없습니다. 해결책 - 쿼리를 생성할 때 Oracle의 일반적인 주석은 '--'를 사용합니다..