maven 构建配置文件
构建配置文件是一系列的配置项的值,可以用来设置或者覆盖 maven 构建的默认值。
使用构建配置文件,你可以为不同的环境,比如说生产环境和开发环境,定制构建方式。
配置文件在 pom.xml 文件中使用 activeprofiles 或者 profiles 元素指定,并且可以通过各种方式触发。配置文件在构建时修改 pom,并且用来给参数设定不同的目标环境(比如说,开发、测试和生产环境中数据库服务器的地址)。
1. 构建配置文件的类型
构建配置文件大体上有三种类型:
类型 | 在哪定义 |
---|---|
项目级(per project) | 定义在项目的pom文件pom.xml中 |
用户级 (per user) | 定义在maven的设置xml文件中 (%user_home%/.m2/settings.xml) |
全局(global) | 定义在 maven 全局的设置 xml 文件中 (%m2_home%/conf/settings.xml) |
2. 配置文件激活
maven的构建配置文件可以通过多种方式激活。
- 使用命令控制台输入显式激活。
- 通过 maven 设置。
- 基于环境变量(用户或者系统变量)。
- 操作系统设置(比如说,windows系列)。
- 文件的存在或者缺失。
3. 配置文件激活范例
假定项目结构如下:
其中在src/main/resources文件夹下有三个用于测试文件:
文件名 | 描述 |
---|---|
env.properties | 如果未指定配置文件时默认使用的配置。 |
env.test.properties | 当测试配置文件使用时的测试配置。 |
env.prod.properties | 当生产配置文件使用时的生产配置。 |
注意:这三个配置文件并不是代表构建配置文件的功能,而是用于本次测试的目的;比如,我指定了构建配置文件为 prod 时,项目就使用 env.prod.properties文件。
注意:下面的例子仍然是使用 antrun 插件,因为此插件能绑定 maven 生命周期阶段,并通过 ant 的标签不用编写一点代码即可输出信息、复制文件等,经此而已。其余的与本次构建配置文件无关。
1) 配置文件激活
profile 可以让我们定义一系列的配置信息,然后指定其激活条件。这样我们就可以定义多个 profile,然后每个 profile 对应不同的激活条件和配置信息,从而达到不同环境使用不同配置信息的效果。
以下实例,我们将 maven-antrun-plugin:run 目标添加到测试阶段中。这样我们可以在不同的 profile 中输出文本信息。我们将使用 pom.xml 来定义不同的 profile,并在命令控制台中使用 maven 命令激活 profile。
pom.xml 文件如下:
<project xmlns="http://maven.apache.org/pom/4.0.0" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://maven.apache.org/pom/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelversion>4.0.0</modelversion> <groupid>com.jsoft.test</groupid> <artifactid>testproject</artifactid> <packaging>jar</packaging> <version>0.1-snapshot</version> <name>testproject</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupid>junit</groupid> <artifactid>junit</artifactid> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>test</id> <build> <plugins> <plugin> <groupid>org.apache.maven.plugins</groupid> <artifactid>maven-antrun-plugin</artifactid> <version>1.8</version> <executions> <execution> <phase>test</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <echo>using env.test.properties</echo> <copy file="src/main/resources/env.test.properties" tofile="${project.build.outputdirectory}/env.properties" overwrite="true"/> </tasks> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>normal</id> <build> <plugins> <plugin> <groupid>org.apache.maven.plugins</groupid> <artifactid>maven-antrun-plugin</artifactid> <version>1.8</version> <executions> <execution> <phase>test</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <echo>using env.properties</echo> <copy file="src/main/resources/env.properties" tofile="${project.build.outputdirectory}/env.properties" overwrite="true"/> </tasks> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>prod</id> <build> <plugins> <plugin> <groupid>org.apache.maven.plugins</groupid> <artifactid>maven-antrun-plugin</artifactid> <version>1.8</version> <executions> <execution> <phase>test</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <echo>using env.prod.properties</echo> <copy file="src/main/resources/env.prod.properties" tofile="${project.build.outputdirectory}/env.properties" overwrite="true"/> </tasks> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>
注意:构建配置文件采用的是 <profiles> 节点。
说明:上面新建了三个 <profiles>,其中 <id> 区分了不同的 <profiles> 执行不同的 antrun 任务;而 antrun 的任务可以这么理解,antrun 监听 test 的 maven 生命周期阶段,当 maven 执行 test 时,就触发了 antrun 的任务,任务里面为输出文本并复制文件到指定的位置;而至于要执行哪个 antrun 任务,此时构建配置文件起到了传输指定的作用,比如,通过命令行参数输入指定的 <id>。
执行命令:
mvn test -ptest
提示:第一个 test 为 maven 生命周期阶段,第 2 个 test 为构建配置文件指定的 <id> 参数,这个参数通过 -p 来传输,当然,它可以是 prod 或者 normal 这些由你定义的<id>。
运行的结果如下:
可以看出成功的触发了antrun的任务。并且是对应构建配置文件下的 <id> 为 test 的任务。
再测试其余两个命令,结果如下:
2、通过maven设置激活配置文件
打开 %user_home%/.m2 目录下的 settings.xml 文件,其中 %user_home% 代表用户主目录。如果 setting.xml 文件不存在就直接拷贝 %m2_home%/conf/settings.xml 到 .m2 目录,其中 %m2_home% 代表 maven 的安装目录。
配置 setting.xml 文件,增加 <activeprofiles>属性:
<settings xmlns="http://maven.apache.org/pom/4.0.0" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://maven.apache.org/pom/4.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> ... <activeprofiles> <activeprofile>test</activeprofile> </activeprofiles> </settings>
执行命令:
mvn test
提示 1:此时不需要使用 -ptest 来输入参数了,上面的 setting.xml 文件的 <activeprofile> 已经指定了 test 参数代替了。
提示 2:同样可以使用在 %m2_home%/conf/settings.xml 的文件进行配置,效果一致。
执行结果:
3、通过环境变量激活配置文件
先把上一步测试的 setting.xml 值全部去掉。
然后在 pom.xml 里面的 <id> 为 test 的 <profile> 节点,加入 <activation> 节点:
<project xmlns="http://maven.apache.org/pom/4.0.0" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://maven.apache.org/pom/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelversion>4.0.0</modelversion> <groupid>com.jsoft.test</groupid> <artifactid>testproject</artifactid> <packaging>jar</packaging> <version>0.1-snapshot</version> <name>testproject</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupid>junit</groupid> <artifactid>junit</artifactid> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>test</id> <activation> <property> <name>env</name> <value>test</value> </property> </activation> <build> <plugins> <plugin> <groupid>org.apache.maven.plugins</groupid> <artifactid>maven-antrun-plugin</artifactid> <version>1.8</version> <executions> <execution> <phase>test</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <echo>using env.test.properties</echo> <copy file="src/main/resources/env.test.properties" tofile="${project.build.outputdirectory}/env.properties" overwrite="true"/> </tasks> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>normal</id> <build> <plugins> <plugin> <groupid>org.apache.maven.plugins</groupid> <artifactid>maven-antrun-plugin</artifactid> <version>1.8</version> <executions> <execution> <phase>test</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <echo>using env.properties</echo> <copy file="src/main/resources/env.properties" tofile="${project.build.outputdirectory}/env.properties" overwrite="true"/> </tasks> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>prod</id> <build> <plugins> <plugin> <groupid>org.apache.maven.plugins</groupid> <artifactid>maven-antrun-plugin</artifactid> <version>1.8</version> <executions> <execution> <phase>test</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <echo>using env.prod.properties</echo> <copy file="src/main/resources/env.prod.properties" tofile="${project.build.outputdirectory}/env.properties" overwrite="true"/> </tasks> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>
执行命令:
mvn test -denv=test
提示 1:上面使用 -d 传递环境变量,其中 env 对应刚才设置的 <name> 值,test 对应<value>。
提示 2:在 windows 10 上测试了系统的环境变量,但是不生效,所以,只能通过 -d 传递。
执行结果:
4、通过操作系统激活配置文件
activation 元素包含下面的操作系统信息。当系统为 windows xp 时,test profile 将会被触发。
<profile> <id>test</id> <activation> <os> <name>windows xp</name> <family>windows</family> <arch>x86</arch> <version>5.1.2600</version> </os> </activation> </profile>
现在打开命令控制台,跳转到 pom.xml 所在目录,并执行下面的 mvn 命令。不要使用 -p 选项指定 profile 的名称。maven 将显示被激活的 test profile 的结果。
mvn test
5、通过文件的存在或者缺失激活配置文件
现在使用 activation 元素包含下面的操作系统信息。当 target/generated-sources/axistools/wsdl2java/com/companyname/group 缺失时,test profile 将会被触发。
<profile> <id>test</id> <activation> <file> <missing>target/generated-sources/axistools/wsdl2java/ com/companyname/group</missing> </file> </activation> </profile>
现在打开命令控制台,跳转到 pom.xml 所在目录,并执行下面的 mvn 命令。不要使用 -p 选项指定 profile 的名称。maven 将显示被激活的 test profile 的结果。
mvn test
参考:https://www.cnblogs.com/easonjim/p/6828743.html