index.jsp에서 리스트를 보려고하면

아래와 같이 oracle.jdbc.OracleDriver 문제가 발생한다.

해당 드라이버를 찾지 못하는 문제로 해결 방법은 아래와 같다.

여기서 중요한 부분은 오라클 dependency만 추가하는 것으로 해결이 안된다.

저작권 문제라고 하는데 아래 repository 부분도 추가를 해줘야 jar파일을 불러 올 수 있다.

아래 코드 전체를 입력해야 불러올 수 있으니 참고하자

<repositories>
  <repository>
    <id>public</id>
    <url>http://nexus.talanlabs.com/content/repositories/releases/</url>
    </repository>
</repositories>	
	
<dependencies>
  <dependency>
    <groupId>com.oracle</groupId>
    <artifactId>ojdbc</artifactId>
    <version>6</version>
  </dependency>
</dependencies>

추가로 정상 loading이 되면 아래와 같이 jar파일이 추가된 것을 확인할 수 있다.

+ Recent posts