[Spring] - 오라클 연동 시 HTTP Status 500 - Servlet.init() for servlet appServlet threw exception 에러
Spring2018. 7. 18. 01:35
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
○ 오라클 연동 시 HTTP Status 500 - Servlet.init() for servlet appServlet threw exception 에러 |
스프링에서 오라클과 연동 시 아래와 같은 에러가 발생할 수 있는데 해결방법은 아래와 같다 1. C:\oraclexe\app\oracle\product\11.2.0\server\jdbc\lib\ojdbc6.jar 을 복사한다 2. C:\apache-tomcat-8.0.50\lib 에 붙여넣기 한다 (톰캣 설치 경로) 3. pom.xml 에 dependency 추가 및 버전 확인 (버전이 맞지 않으면 에러가 나서 아래와 같이 사용!) <!-- jdbc 쓰기 위해 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>${org.springframework-version}</version> </dependency> |
'Spring' 카테고리의 다른 글
[Spring] - Spring JDBC Template (2) : select 처리 (0) | 2018.07.24 |
---|---|
[Spring] - Spring JDBC == JDBC (1) Template 사용하기 위한 설정 (0) | 2018.07.18 |
[Spring] - 프로젝트 설계 및 커맨드 인터페이스와 클래스 (중요) (0) | 2018.07.17 |
[Spring] - 폼 데이터 검증 (2) : @Valid @InitBinder 이용한 유효성 검증 (0) | 2018.07.15 |
[Spring] - 폼 데이터 검증 (1) : Validator 인터페이스를 이용한 유효성 검증 (0) | 2018.07.15 |
댓글()