1. 先到oracle官網下載ojdbc6驅動jar,官網地址:html
https://www.oracle.com/technetwork/database/enterprise-edition/jdbc-112010-090769.html
2. 下載好後,運行maven命令安裝jar到本地倉庫oracle
mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.4 -Dpackaging=jar -Dfile=D:\Java\jar\ojdbc6-11.2.0.4.jar
3. 安裝成功後,添加ojdbc6的maven依賴,項目中就可使用ojdbc6了maven
<dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc6</artifactId> <version>11.2.0.4</version> </dependency>