2. 오라클 드라이버 라이브러리 설정ⅱ (pom.xml파일에 정의)
https://repo.maven.apache.org/maven2 <==== Central Repository
(pom.xml파일에 기술된 jar파일들을 가져오는 곳)
기본 원격 repository(Central Repository)에 오라클 드라이버가 없기 때문에
다운 받을 주소를 따로 명시해 주어야 함.
- 첫번째)
dependencies태그 위에 오라클 드라이버를 가져올 주소를 명시
<repositories>
<repository>
<id>oracle</id>
<name>ORACLE JDBC Repository</name>
<url>http://maven.jahia.org/maven2</url>
</repository>
</repositories>
- 두번째)
dependencies태그 안에 dependency태그 정의
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>12.1.0.2</version>
</dependency>