일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Oracle
- Date and Time Function
- HTTP
- 윈도우
- SVN
- Data and Time Functions
- 전자정부표준프레임워크
- String Functions and Date Operators
- 전자정부 표준프레임워크
- Date and Time Functions
- String Function and Operators
- 오라클
- Sring Functions and Operators
- Tibero
- MySQL
- 방화벽
- String Functions and Operators
- 티베로
- Today
- Total
웹이야기
Oracle JDBC drivers 다운로드 본문
오라클 jdbc 드라이버는 아래 URL 에서 다운로드 받을 수 있다.
https://www.oracle.com/database/technologies/appdev/jdbc-downloads.html
오라클 jdbc 드라이버 Maven Repository
아래와 같은 식으로 쓸 수 있는 것 같다.
<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>
'D > ORACLE' 카테고리의 다른 글
오라클 테이블 목록 조회 (0) | 2020.03.13 |
---|---|
오라클 JDBC Driver / Oracle JDBC driver 다운로드 (0) | 2020.03.10 |
Windows 10에서 1521 포트 열기 (0) | 2020.02.24 |
오라클에서 사용자 추가 (0) | 2020.02.24 |
오라클 리스너 설정(쓸데없이 장황) (0) | 2020.02.22 |