maven 構(gòu)建配置文件
構(gòu)建配置文件是一系列的配置項(xiàng)的值,可以用來(lái)設(shè)置或者覆蓋 maven 構(gòu)建的默認(rèn)值。
使用構(gòu)建配置文件,你可以為不同的環(huán)境,比如說(shuō)生產(chǎn)環(huán)境和開(kāi)發(fā)環(huán)境,定制構(gòu)建方式。
配置文件在 pom.xml 文件中使用 activeprofiles 或者 profiles 元素指定,并且可以通過(guò)各種方式觸發(fā)。配置文件在構(gòu)建時(shí)修改 pom,并且用來(lái)給參數(shù)設(shè)定不同的目標(biāo)環(huán)境(比如說(shuō),開(kāi)發(fā)、測(cè)試和生產(chǎn)環(huán)境中數(shù)據(jù)庫(kù)服務(wù)器的地址)。
1. 構(gòu)建配置文件的類型
構(gòu)建配置文件大體上有三種類型:
類型 | 在哪定義 |
---|---|
項(xiàng)目級(jí)(per project) | 定義在項(xiàng)目的pom文件pom.xml中 |
用戶級(jí) (per user) | 定義在maven的設(shè)置xml文件中 (%user_home%/.m2/settings.xml) |
全局(global) | 定義在 maven 全局的設(shè)置 xml 文件中 (%m2_home%/conf/settings.xml) |
2. 配置文件激活
maven的構(gòu)建配置文件可以通過(guò)多種方式激活。
- 使用命令控制臺(tái)輸入顯式激活。
- 通過(guò) maven 設(shè)置。
- 基于環(huán)境變量(用戶或者系統(tǒng)變量)。
- 操作系統(tǒng)設(shè)置(比如說(shuō),windows系列)。
- 文件的存在或者缺失。
3. 配置文件激活范例
假定項(xiàng)目結(jié)構(gòu)如下:
其中在src/main/resources文件夾下有三個(gè)用于測(cè)試文件:
文件名 | 描述 |
---|---|
env.properties | 如果未指定配置文件時(shí)默認(rèn)使用的配置。 |
env.test.properties | 當(dāng)測(cè)試配置文件使用時(shí)的測(cè)試配置。 |
env.prod.properties | 當(dāng)生產(chǎn)配置文件使用時(shí)的生產(chǎn)配置。 |
注意:這三個(gè)配置文件并不是代表構(gòu)建配置文件的功能,而是用于本次測(cè)試的目的;比如,我指定了構(gòu)建配置文件為 prod 時(shí),項(xiàng)目就使用 env.prod.properties文件。
注意:下面的例子仍然是使用 antrun 插件,因?yàn)榇瞬寮芙壎?maven 生命周期階段,并通過(guò) ant 的標(biāo)簽不用編寫(xiě)一點(diǎn)代碼即可輸出信息、復(fù)制文件等,經(jīng)此而已。其余的與本次構(gòu)建配置文件無(wú)關(guān)。
1) 配置文件激活
profile 可以讓我們定義一系列的配置信息,然后指定其激活條件。這樣我們就可以定義多個(gè) profile,然后每個(gè) profile 對(duì)應(yīng)不同的激活條件和配置信息,從而達(dá)到不同環(huán)境使用不同配置信息的效果。
以下實(shí)例,我們將 maven-antrun-plugin:run 目標(biāo)添加到測(cè)試階段中。這樣我們可以在不同的 profile 中輸出文本信息。我們將使用 pom.xml 來(lái)定義不同的 profile,并在命令控制臺(tái)中使用 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>
注意:構(gòu)建配置文件采用的是 <profiles> 節(jié)點(diǎn)。
說(shuō)明:上面新建了三個(gè) <profiles>,其中 <id> 區(qū)分了不同的 <profiles> 執(zhí)行不同的 antrun 任務(wù);而 antrun 的任務(wù)可以這么理解,antrun 監(jiān)聽(tīng) test 的 maven 生命周期階段,當(dāng) maven 執(zhí)行 test 時(shí),就觸發(fā)了 antrun 的任務(wù),任務(wù)里面為輸出文本并復(fù)制文件到指定的位置;而至于要執(zhí)行哪個(gè) antrun 任務(wù),此時(shí)構(gòu)建配置文件起到了傳輸指定的作用,比如,通過(guò)命令行參數(shù)輸入指定的 <id>。
執(zhí)行命令:
mvn test -ptest
提示:第一個(gè) test 為 maven 生命周期階段,第 2 個(gè) test 為構(gòu)建配置文件指定的 <id> 參數(shù),這個(gè)參數(shù)通過(guò) -p 來(lái)傳輸,當(dāng)然,它可以是 prod 或者 normal 這些由你定義的<id>。
運(yùn)行的結(jié)果如下:
可以看出成功的觸發(fā)了antrun的任務(wù)。并且是對(duì)應(yīng)構(gòu)建配置文件下的 <id> 為 test 的任務(wù)。
再測(cè)試其余兩個(gè)命令,結(jié)果如下:
2、通過(guò)maven設(shè)置激活配置文件
打開(kāi) %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>
執(zhí)行命令:
mvn test
提示 1:此時(shí)不需要使用 -ptest 來(lái)輸入?yún)?shù)了,上面的 setting.xml 文件的 <activeprofile> 已經(jīng)指定了 test 參數(shù)代替了。
提示 2:同樣可以使用在 %m2_home%/conf/settings.xml 的文件進(jìn)行配置,效果一致。
執(zhí)行結(jié)果:
3、通過(guò)環(huán)境變量激活配置文件
先把上一步測(cè)試的 setting.xml 值全部去掉。
然后在 pom.xml 里面的 <id> 為 test 的 <profile> 節(jié)點(diǎn),加入 <activation> 節(jié)點(diǎn):
<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>
執(zhí)行命令:
mvn test -denv=test
提示 1:上面使用 -d 傳遞環(huán)境變量,其中 env 對(duì)應(yīng)剛才設(shè)置的 <name> 值,test 對(duì)應(yīng)<value>。
提示 2:在 windows 10 上測(cè)試了系統(tǒng)的環(huán)境變量,但是不生效,所以,只能通過(guò) -d 傳遞。
執(zhí)行結(jié)果:
4、通過(guò)操作系統(tǒng)激活配置文件
activation 元素包含下面的操作系統(tǒng)信息。當(dāng)系統(tǒng)為 windows xp 時(shí),test profile 將會(huì)被觸發(fā)。
<profile> <id>test</id> <activation> <os> <name>windows xp</name> <family>windows</family> <arch>x86</arch> <version>5.1.2600</version> </os> </activation> </profile>
現(xiàn)在打開(kāi)命令控制臺(tái),跳轉(zhuǎn)到 pom.xml 所在目錄,并執(zhí)行下面的 mvn 命令。不要使用 -p 選項(xiàng)指定 profile 的名稱。maven 將顯示被激活的 test profile 的結(jié)果。
mvn test
5、通過(guò)文件的存在或者缺失激活配置文件
現(xiàn)在使用 activation 元素包含下面的操作系統(tǒng)信息。當(dāng) target/generated-sources/axistools/wsdl2java/com/companyname/group 缺失時(shí),test profile 將會(huì)被觸發(fā)。
<profile> <id>test</id> <activation> <file> <missing>target/generated-sources/axistools/wsdl2java/ com/companyname/group</missing> </file> </activation> </profile>
現(xiàn)在打開(kāi)命令控制臺(tái),跳轉(zhuǎn)到 pom.xml 所在目錄,并執(zhí)行下面的 mvn 命令。不要使用 -p 選項(xiàng)指定 profile 的名稱。maven 將顯示被激活的 test profile 的結(jié)果。
mvn test
參考:https://www.cnblogs.com/easonjim/p/6828743.html
- JDBC 教程
- JDBC 驅(qū)動(dòng)類型
- JDBC 連接數(shù)據(jù)庫(kù)范例
- JDBC 連接數(shù)據(jù)庫(kù)步驟
- JDBC Statement, PreparedStatement 和 CallableStatement
- JDBC ResultSet 結(jié)果集
- JDBC Resultset 結(jié)果集范例
- JDBC 事務(wù)保存點(diǎn)范例
- Scala 教程
- Scala 簡(jiǎn)介
- Scala 類和對(duì)象
- Scala 文件 I/O
- Spring 教程
- Spring 模塊
- Spring 依賴注入
- Spring 自動(dòng)裝配
- Spring MVC教程
- Spring MVC表單標(biāo)簽庫(kù)
- Spring security