0
点赞
收藏
分享

微信扫一扫

maven ssm 连接oracle


maven ssm 连接oracle_jar包

复制dependency到pom.xml中,并下载jar包(页面上有)

maven ssm 连接oracle_jar_02

mvn install:install-file -Dfile=ojdc6.jar -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.3 -Dpackaging=jar -DgeneratePom=true

还是弄不上,要central库的,maven中央仓库里没有哈哈

maven ssm 连接oracle_jar_03

mvn install:install-file -Dfile=c3p0-0.9.1.2.jar -DgroupId=com.mchange -DartifactId=...

 

<dependency>

    <groupId>com.oracle</groupId>

    <artifactId>ojdbc6</artifactId>

    <version>11.2.0.3</version>

</dependency>

...c3p0

举报

相关推荐

0 条评论