springboot 连接oracle 找不到oracle.jdbc.driver.OracleDriver

由于maven仓库中没有oracle.jdbc的poi,所以引入



    com.oracle
    ojdbc6
    11.2.0.4.0-atlassian-hosted
    test

这个是无效,需要将其jar包下载下来,自己添加到本地maven仓库springboot 连接oracle 找不到oracle.jdbc.driver.OracleDriver_第1张图片

 下以后,安装格式:

mvn install:install-file    -Dfile=    -DgroupId=     -DartifactId=    -Dversion=- Dpackaging=

样例:mvn install:install-file -DgroupId="com.oracle"  "-DartifactId=ojdbc6"  "-Dversion=12.2.0.4.0" "-Dpackaging=jar" "     -Dfile=D:\program\apache-maven-3.5.3\localRepository\11.2.0.4.0-atlassian-hosted.jar"

Dfile:你本地jar包所在的路径。

安装完毕,项目中引入

		
			com.oracle
			ojdbc6
			12.2.0.4.0
		

即可!!

 

 

你可能感兴趣的:(springboot)