日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Maven的构建配置文件(Build Profiles)

發布時間:2024/4/14 编程问答 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Maven的构建配置文件(Build Profiles) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
在命令行使用構建配置文件時,是-P,比如:mvn -Pinput

注意:這里的構建配置文件并不是一個真正的文件,而是通過指定參數來做特定的事。

以下內容引用自https://ayayui.gitbooks.io/tutorialspoint-maven/content/book/maven_build_profiles.html:

當時此教程的例子是在2.0版本,而新的3.0版本只是增加了一點,具體可以參考官網http://maven.apache.org/guides/introduction/introduction-to-profiles.html

什么是構建配置文件?

構建配置文件(A Build profile)?是一系列的配置項的值,可以用來設置或者覆蓋Maven構建默認值。使用構建配置文件,你可以為不同的環境,比如說生產環境(Producation)和開發(Development)環境,定制構建方式。

配置文件在pom.xml文件中使用activeProfiles或者profiles元素指定,并且可以通過各種方式觸發。配置文件在構建時修改POM,并且用來給參數設定不同的目標環境(比如說,開發(Development)、測試(Testing)和生產環境(Producation)中數據庫服務器的地址)。

構建配置文件的類型

構建配置文件大體上有三種類型

類型在哪定義
項目級(Per Project)定義在項目的POM文件pom.xml中
用戶級 (Per User)定義在Maven的設置xml文件中 (%USER_HOME%/.m2/settings.xml)
全局(Global)定義在Maven全局的設置xml文件中 (%M2_HOME%/conf/settings.xml)

配置文件激活

Maven的構建配置文件可以通過多種方式激活。

  • 使用命令控制臺輸入顯式激活。
  • 通過maven設置。
  • 基于環境變量(用戶或者系統變量)。
  • 操作系統設置(比如說,Windows系列)。
  • 文件的存在或者缺失。

官方配置文件激活示例

http://maven.apache.org/guides/introduction/introduction-to-profiles.html

http://maven.apache.org/ref/2.2.1/maven-profile/profiles.html

實踐配置文件激活示例

新建的項目結構如下:

其中在src/main/resources文件夾下有三個用于測試文件:

文件名描述
env.properties如果未指定配置文件時默認使用的配置。
env.test.properties當測試配置文件使用時的測試配置。
env.prod.properties當生產配置文件使用時的生產配置。

注意:這三個配置文件并不是代表構建配置文件的功能,而是用于本次測試的目的;比如,我指定了構建配置文件為prod時,項目就使用envprod.properties文件。

注意:下面的例子仍然是使用AntRun插件,因為此插件能綁定Maven生命周期階段,并通過Ant的標簽不用編寫一點代碼即可輸出信息、復制文件等,經此而已。其余的與本次構建配置文件無關。

1、顯示配置文件激活

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的安裝目錄。對于為什么可以這樣做,參考:http://www.cnblogs.com/EasonJim/p/6827058.html

配置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.0http://maven.apache.org/xsd/settings-1.0.0.xsd">...<activeProfiles><activeProfile>test</activeProfile></activeProfiles> </settings>

執行命令:

mvn test

提示:此時不需要使用-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

提示:上面使用-D傳遞環境變量,其中evn對應剛才設置的<name>值,test對應<value>。

提示2:在Windows 10上測試了系統的環境變量,但是不生效,所以,只能通過-D傳遞。

執行結果:

4、通過操作系統激活配置文件

5、通過文件的存在或者缺失激活配置文件

6、通過JDK的版本激活配置文件

...

更多激活配置,可以參考官方的例子:http://maven.apache.org/guides/introduction/introduction-to-profiles.html

?

測試工程:https://github.com/easonjim/5_java_example/tree/master/maventest/test4/test4/testproject

==>如有問題,請聯系我:easonjim#163.com,或者下方發表評論。<==

總結

以上是生活随笔為你收集整理的Maven的构建配置文件(Build Profiles)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。