<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}等等)。
其实maven已经给出了方案, 就是在资源文件(properties)中放置pom.xml预先设置的变量, 在执行mvn package时就会自动将变量替换为真实值例如:
1. 我们在src\main\resources\application.properties放置如下内容
version=${project.version}
2. 配置pom.xml让Maven to copy that file into your output classes and translate the resource during that copy, interpreting the property
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
3. 执行mvn package
查看生成的jar文件中的application.properties, version值已经变成了pom.xml中的version
因此我们只需使用java读取application.properties即可
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)