maven sqljdbc4怎么添加

maven sqljdbc4怎么添加,第1张

下载jar包之后可以通过下面的maven命令将jar包安装到自己的私服上。

mvn install:install-file -Dfile=sqljdbc4.jar -Dpackaging=jar -DgroupId=com.microsoft.sqlserver -DartifactId=sqljdbc4 -Dversion=4.0

安装成功之后就可以在pom中引用sqljdbc依赖了。

<dependency>

<groupId>com.microsoft.sqlserver</groupId>

<artifactId>sqljdbc4</artifactId>

<version>4.0</version>

</dependency>

<profiles>

<profile>

<id>dev</id>

<activation>

<activebydefault>true</activebydefault>

</activation>

<properties>

<jdbc.driverclassname>com.mysql.jdbc.driver</jdbc.driverclassname>

<jdbc.url>jdbc:mysql://192.168.1.100:3306/test</jdbc.url>

<jdbc.username>test</jdbc.username>

<jdbc.password >test2011</jdbc.password >

</properties>

</profile>

<profile>

<id>test</id>

<properties>

<jdbc.driverclassname>com.mysql.jdbc.driver</jdbc.driverclassname>

<jdbc.url>jdbc:mysql://192.168.1.200:3306/test</jdbc.url>

<jdbc.username>test</jdbc.username>

<jdbc.password >test2011</jdbc.password >

</properties>

</profile>

</profiles>

定义id为dev的profile:jdbc.url属性为jdbc:mysql://192.168.1.100:3306/test

定义id为test的profile:jdbc.url属性为jdbc:mysql://192.168.1.200:3306/test

2.在数据持久层的pom中定义resources过滤

其他数据库 的配置放在/src/main/resources和/src/test/resources中,在pom中增加resource过滤

1 <build>

2 <resources>

3 <resource>

4 <directory>${project.basedir}/src/main/resources</directory>

5 <filtering>true</filt www.jdjdzj.com ering>

6 </resource>

7 </resources>

8 <testresources>

9 <testresource>

10 <directory>${project.basedir}/src/test/resources</directory>

11 <filtering>true</filtering>

12 </testresource>

13 </testresources>

14 </build>

3.在/src/main/resources和/src/test/resources中定义jdbc连接文件jdbc.properties

1 jdbc.driverclassname=${jdbc.driverclassname}

2

3 jdbc.url=${jdbc.url}

4

5 jdbc.username=${jdbc.username}

6

7 jdbc.password =${jdbc.password }

经过了如上3个步骤后运行mvn命令会执行id为dev的profile(由于在id为dev的配置中增加了<activebydefault>true</activebydefault>的配置)

在mvn命令后增加 -ptest运行,会执行id为test的profile。

经过如上配置后,maven会在src/main/resources/ 和 /src/test/resources 中的文件中(即第3步骤配置的jdbc.properties)查找在profile中定义的属性(如jdbc.properties中的${jdbc.driverclassname}等等)。

第一步:将ojdbc14.jar放到用户目录,比如:C:\Users\qicyt1812 第二步:在cmd中执行命令:mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.1.0 -Dpackaging=jar -Dfile=ojdbc14.jar C:\Users\qicyt1812>...


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11557452.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存