您好,登錄后才能下訂單哦!
profile的目的是什么?
在我們實際的開發過程中會有dev、test、product等環境,或則不同的操作OS。而它們可能需要的配置參數是不一樣的,比如:數據庫。通常的做法就是在切換環境的同時修改我們的代碼或則同一個properties文件。基于此,maven2.0給開發提供了一個更好的選擇,profiles就是用于不同環境構建不同的project.
profile可以配置的地方有哪些?
profile配置不同的地方的作用是什么?
本質上分為兩類:一種是maven setting,作用于所有的project,通常是將不影響project build的配置放在此類文件中。如:<repositories>、<pluginRepositories>、<properties>(可以通過通配符被pom中properties屬性引用)。另一種則是pom.xml,作用于單個project或其子module,通常是將影響project build的參數配置在pom.xml中profile中,如:<resources>、<properites>。
profile的激活方式?
<settings>
...
<activeProfiles>
<activeProfile>profile-1</activeProfile>
</activeProfiles>
...
</settings>
* 根據JDK環境(自動檢測),如:
<profiles>
<profile>
<activation>
<jdk>1.4</jdk>
</activation>
...
</profile>
</profiles>
* 根據OS,如:
<profiles>
<profile>
<activation>
<os>
<name>Windows XP</name>
<family>Windows</family>
<arch>x86</arch>
<version>5.1.2600</version>
</os>
</activation>
...
</profile>
</profiles>
* 根據<activation>中的<property>,并同時來命令行中指定參數:mvn groupId:artifactId:goal -Ddebug=false。如:
<profiles>
<profile>
<activation>
<property>
<name>debug</name>
</property>
</activation>
...
</profile>
</profiles>
* 根據<activation>中的<activeByDefault>自動激活,如:
<profiles>
<profile>
<id>profile-1</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
...
</profile>
</profiles>
* 根據<activation>中的<file>,<exists>和<missing>,如:
<profiles>
<profile>
<activation>
<file>
<missing>target/generated-sources/axistools/wsdl2java/org/apache/maven</missing>
</file>
</activation>
...
</profile>
</profiles>
**pom.xml中的profile能修改哪些內容?**
* <repositories>
* <pluginRepositories>
* <dependencies>
* <plugins>
* <properties>(not actually available in the main POM, but used behind the scenes)
* <modules>
* <reporting>
* <dependencyManagement>
* <distributionManagement>
* a subset of the <build> element, which consists of:
* <defaultGoal>
* <resources>
* <testResources>
* <finalName>
**如何查看哪些profiles是生效的?**
mvn help:active-profiles
mvn help:active-profiles -P appserverConfig-dev
mvn help:active-profiles -Denv=dev
參考文檔:http://maven.apache.org/guides/introduction/introduction-to-profiles.html
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。