pom.xml下加本地jar包

pom.xml中的配置

<dependency>
  <groupId>com.oracle</groupId>
  <artifactId>ojdbc14</artifactId>
  <version>10.2.0.3.0</version>
  <scope>system</scope>
  <systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/ojdbc14_g.jar</systemPath>
</dependency>

 对应路径:

原文地址:https://www.cnblogs.com/SunAutumn/p/8521078.html