웹이야기

Oracle JDBC drivers 다운로드 본문

D/ORACLE

Oracle JDBC drivers 다운로드

yeon.Biju 2020. 2. 25. 20:31

오라클 jdbc 드라이버는 아래 URL 에서 다운로드 받을 수 있다.

 

https://www.oracle.com/database/technologies/appdev/jdbc-downloads.html

 

JDBC and UCP Downloads page

No results found Your search did not match any results. We suggest you try the following to help find what you're looking for: Check the spelling of your keyword search. Use synonyms for the keyword you typed, for example, try “application” instead of “sof

www.oracle.com

 

오라클 jdbc 드라이버 Maven Repository 

 

https://blogs.oracle.com/dev2dev/get-oracle-jdbc-drivers-and-ucp-from-oracle-maven-repository-without-ides

 

Get Oracle JDBC drivers and UCP from Oracle Maven Repository (without IDEs)

New !! Oracle 19.3 JDBC drivers and Universal Connection Pool (ucp.jar) are on Maven Central Repository !! Refer to the blog for more details.  The Oracle JDBC drivers and Universal Connection Pool (UCP) are also available on the Oracle Maven Repository. T

blogs.oracle.com

 

아래와 같은 식으로 쓸 수 있는 것 같다. 

 

<dependencies>
  <dependency>
    <groupId>com.oracle.jdbc</groupId>
    <artifactId>ojdbc8</artifactId>
    <version>19.3.0.0</version>
  </dependency>
</dependencies>
<repositories>
  <repository>
    <id>maven.oracle.com</id>
    <name>oracle-maven-repo</name>
    <url>https://maven.oracle.com</url>
    <layout>default</layout>
    <releases>
      <enabled>true</enabled>
      <updatePolicy>always</updatePolicy>
    </releases>
  </repository>
</repositories>
<pluginRepositories>
  <pluginRepository>
    <id>maven.oracle.com</id>
    <name>oracle-maven-repo</name> 
    <url>https://maven.oracle.com</url>
    <layout>default</layout>
    <releases>
      <enabled>true</enabled>
      <updatePolicy>always</updatePolicy>
    </releases>
  </pluginRepository>
</pluginRepositories>
  

Comments