오류좀 봐주세요
- 작성자 :
- 유*만
- 작성일 :
- 2013-07-11 22:49:50
- 조회수 :
- 2,090
- 구분 :
- 기타
- 진행상태 :
- 완료
Q
안녕하세요
eGovFrame2.5 에 tomcat6, jdk1.6 으로 세팅해서
환경을 꾸렸는데요.
기존에 있던 소스를 받아서 import시켜서 작업중인데
특정 java파일에 오류가 발생하여 봤더니
import oracle.sql.CLOB; 가 들어있는 java파일이 오류가 나네요.
서버를 돌리면 아래와 같은 오류가 나구요.
심각: 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 'AdmMainDAO' defined in file [D:\DEVP\WEB\YOUTH\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\youth_potal\WEB-INF\classes\youth\cmmn\dao\AdmMainDAO.class]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [youth.cmmn.dao.AdmMainDAO]: Constructor threw exception; nested exception is java.lang.Error: Unresolved compilation problems:
The import oracle cannot be resolved
The method getClob(CLOB) from the type ClobUtil refers to the missing type CLOB
CLOB cannot be resolved to a type
혹시 원인이 뭔지 알수있을까요?
eGovFrame2.5 에 tomcat6, jdk1.6 으로 세팅해서
환경을 꾸렸는데요.
기존에 있던 소스를 받아서 import시켜서 작업중인데
특정 java파일에 오류가 발생하여 봤더니
import oracle.sql.CLOB; 가 들어있는 java파일이 오류가 나네요.
서버를 돌리면 아래와 같은 오류가 나구요.
심각: 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 'AdmMainDAO' defined in file [D:\DEVP\WEB\YOUTH\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\youth_potal\WEB-INF\classes\youth\cmmn\dao\AdmMainDAO.class]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [youth.cmmn.dao.AdmMainDAO]: Constructor threw exception; nested exception is java.lang.Error: Unresolved compilation problems:
The import oracle cannot be resolved
The method getClob(CLOB) from the type ClobUtil refers to the missing type CLOB
CLOB cannot be resolved to a type
혹시 원인이 뭔지 알수있을까요?
A
안녕하세요. 유승만님.
컴파일 시가 아닌 실행 시에 oracle.sql.CLOB 패키지 및 추가 참조되는 oracle쪽 library가 없어서 발생된 문제 같습니다.
해당 library를 WEB-INF/lib 에 넣어 놓으시면 되실 것 같습니다.
그럼, 즐거운 하루되십시오.
감사합니다.
컴파일 시가 아닌 실행 시에 oracle.sql.CLOB 패키지 및 추가 참조되는 oracle쪽 library가 없어서 발생된 문제 같습니다.
해당 library를 WEB-INF/lib 에 넣어 놓으시면 되실 것 같습니다.
그럼, 즐거운 하루되십시오.
감사합니다.