当在开发工具中编译项目时会发现Ojdbc的依赖没有导入进来,报以下错误:
Could not find artifact com.oracle:ojdbc8:pom:10.2.0.4.0 in alimaven (http://maven.aliyun.com/nexus/content/groups/public/)
原因为Oracle的商业版权问题,maven的中心资源库中没有ojdbc驱动包,所以需要在maven本地库中安装ojdbc驱动包。
上百度或oracle官网下载ojdbc8.jar包。
C:\Users\leff>mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc8 -Dversion=10.2.0.4.0 -Dpackaging=jar -Dfile=C:\Users\leff\Desktop\ojdbc8.jar
安装成功后,会在maven默认本地仓库位置:
若开发工具不是用的默认仓库,则把上述ojdbc目录的拷贝到相应的仓库目录中即可。