在开发过程中,我们经常会根据不同的环境配置不同的参数,如数据源的ip,username,password、url、秘钥等都会不同,传统方式是在一个配置文件中通过修改properties文件中的参数值或者通过注释解注释来达到目的,这样不仅容易出错,还浪费不必要的时间,更重要的是把代码发布到测试环境或者生产环境还容易忘记改。为解决这种问题,maven提供了一种解决方案,就是profile。
profile定义的位置
application-dev.properties
env.jdbc.username=dev
env.jdbc.password=123456
application-test.properties
env.jdbc.username=test
env.jdbc.password=888888
application-pro.properties
env.jdbc.username=root
env.jdbc.password=666666
application.properties
// 引用application-中的key
jdbc.username=${env.jdbc.username}
jdbc.password=${env.jdbc.password}
# 公共配置
salt=123456789
<profiles>
<profile>
<id>devid>
<properties>
<env>devenv>
properties>
<activation>
<activeByDefault>trueactiveByDefault>
activation>
profile>
<profile>
<id>testid>
<properties>
<env>testenv>
properties>
profile>
<profile>
<id>proid>
<properties>
<env>proenv>
properties>
profile>
profiles>
第四步:配置filter和resource
${env}就是在mvn package -P
<build>
<finalName>profile-appfinalName>
<filters>
<filter>src/main/resources/config/application/application-${env}.propertiesfilter>
filters>
<resources>
<resource>
<directory>src/main/resourcesdirectory>
<filtering>truefiltering>
resource>
resources>
<plugins>
<plugin>
<groupId>org.apache.maven.pluginsgroupId>
<artifactId>maven-war-pluginartifactId>
plugin>
plugins>
build>
// 如果不指定环境,默认是activeByDefault=true的环境,当前是指开发环境
mvn package
// 打包指定的环境通过-P 参数,注意p是大写的
mvn package -P
从mvn packege -P test运行的结果中可以看到生成的target目录下classes/application.perperties中的jdbc.username和jdbc.password 就是application-test.properties中配置的env.jdbc.username和env.jdbc.password的值。
在spring中如果要使用属性配置文件,直接引入这个总的配置文件即可,其他的环境配置文件的使命已经结束了。
实现原理:
在pom.xml中为每个不同的环境定义不同的profile,每个profile都有一个环境名称,然后为不同环境定义不同的配置文件(如application-
env/dev/config.properties
jdbc.username=dev
jdbc.password=123456
env/test/config.properties
jdbc.username=test
jdbc.password=888888
env/pro/config.properties
jdbc.username=root
jdbc.password=666666
application.properties
# 公共配置
salt=123456789
<profiles>
<profile>
<id>devid>
<properties>
<env>devenv>
properties>
<activation>
<activeByDefault>trueactiveByDefault>
activation>
profile>
<profile>
<id>testid>
<properties>
<env>testenv>
properties>
profile>
<profile>
<id>proid>
<properties>
<env>proenv>
properties>
profile>
profiles>
<build>
<finalName>profile-appfinalName>
<resources>
<resource>
<directory>src/main/resourcesdirectory>
<excludes>
<exclude>env/dev/*exclude>
<exclude>env/test/*exclude>
<exclude>env/pro/*exclude>
excludes>
<filtering>truefiltering>
resource>
<resource>
<directory>src/main/resources/env/${env}directory>
<includes>
<include>*.*include>
<include>**/*.xmlinclude>
<include>**/*.propertiesinclude>
includes>
<filtering>truefiltering>
resource>
resources>
<plugins>
<plugin>
<groupId>org.apache.maven.pluginsgroupId>
<artifactId>maven-war-pluginartifactId>
plugin>
plugins>
build>
如果经常使用mvn package -P
filter方式会把所有的application-dev.properties、application-test.properties、application-pro.properties文件都会打包进去,而且此种方式只能针对属性文件,如果有其他文件(如.xml)也根据不同的环境有不同的配置,这种方式是不好处理。
多resource方式在打包时只打包指定环境的配置文件,可以将各种文件放到各自的环境文件夹中,在打包的时候会将整个文件夹都打包进去。推荐此种方式