ojdbc6.jar를 maven 중앙 저장소에서 제공하지 않는다. 그래서 수동으로 라이브러리를 복사해야되는데
pom,xml 설정으로 번거로운것을 해결할 수 있다.
pom.xml에 먼저 저장소를 추가한다.
<repositories>
<repository>
<id>codelds</id>
<url>https://code.lds.org/nexus/content/groups/main-repo</url>
</repository>
</repositories>
<dependencies>
...
...
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>11.2.0.3</version>
</dependency>
...
...
</dependencies>
----------------------------------------------------------------------------------------------------------------------------------------------------
기존 이클립스에서 JDBC 드라이버 로드
- 시작 - 실행 - cmd - cd를 이용하여 workspace\해당 프로젝트\bin으로 이동한 후 해당 클래스를 컴파일하여 결과를 확인한다. 드라이버 로딩 성공이 출력되면 성공
출처: http://fourseasons0525.tistory.com/category/?page=4 [좀 늦은 첫눈처럼 뒤늦은 여름비처럼]
'프로그래밍 > Spring & MyBatis' 카테고리의 다른 글
MODEL 기술정리 (0) | 2018.02.10 |
---|---|
VO(Value Object)와 DTO(Data Transfer Object) (0) | 2018.02.07 |
( String / ModelAndView ) forward , redirect (0) | 2018.01.31 |
custom annotation 만들기 (1) | 2018.01.27 |
스프링 정리 잘 되어 있는 곳 (0) | 2018.01.26 |