在maven项目的pox.xml里进行以下配置:maven
<dependencies> <dependency> <groupId>test</groupId> <!-- 此行和下行均可以本身随便定义 --> <artifactId>beck</artifactId> <version>1.0</version> <scope>system</scope> <!-- 此行是系统的指定范围的依赖 --> <systemPath>${project.basedir}/lib/ojdbc7.jar</systemPath> <!--以上是引用jar包的绝对路径 --> </dependency> </dependencies>xml