第一步html
因爲Oracle版權緣由如今maven中央庫已經不提供下載ojdbc的jar了,須要手動到Oracle官網去下載,Oracle 10.2使用ojdbc14.jar,下載地址: java
https://www.oracle.com/technetwork/database/enterprise-edition/jdbc-10201-088211.htmlspring
網盤獲取數據庫
連接:https://pan.baidu.com/s/1kb_o0E5D3z84y8Ji6cZWvA 提取碼:c2ww apache
第二步springboot
下載完成之後手動安裝jar到本地maven倉庫,-Dfile是本地jar文件的位置。oracle
mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.5.0 -Dpackaging=jar -Dfile=D:\download\ojdbc14.jar
第三步maven
Maven的pom.xml配置,首先要配置springboot的jdbc模塊,這裏使用了jpa因此已經依賴引入了jdbc模塊。spring-boot
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc14</artifactId> <version>10.2.0.5.0</version> </dependency>
Springboot 配置oracle數據庫鏈接信息。url
spring.jpa.database=oracle spring.datasource.driver-class-name=oracle.jdbc.driver.OracleDriver spring.datasource.url=jdbc:oracle:thin:@localhost:1521:data spring.datasource.username=**** spring.datasource.password=****
接下來就是以往的開發步驟了。