黄色网址大全免费-黄色网址你懂得-黄色网址你懂的-黄色网址有那些-免费超爽视频-免费大片黄国产在线观看

Maven教程
Maven常用命令應(yīng)用
Maven修改倉庫地址
使用Eclipse創(chuàng)建Maven項目
Maven插件
Maven打包
Maven項目導(dǎo)入及轉(zhuǎn)換

Maven構(gòu)建配置文件

構(gòu)建配置文件是一系列的配置項的值,可以用來設(shè)置或者覆蓋 Maven 構(gòu)建默認(rèn)值。

使用構(gòu)建配置文件,你可以為不同的環(huán)境,比如說生產(chǎn)環(huán)境(Production)和開發(fā)(Development)環(huán)境,定制構(gòu)建方式。

配置文件在 pom.xml 文件中使用 activeProfiles 或者 profiles 元素指定,并且可以通過各種方式觸發(fā)。配置文件在構(gòu)建時修改 POM,并且用來給參數(shù)設(shè)定不同的目標(biāo)環(huán)境(比如說,開發(fā)(Development)、測試(Testing)和生產(chǎn)環(huán)境(Production)中數(shù)據(jù)庫服務(wù)器的地址)。

構(gòu)建配置文件的類型

構(gòu)建配置文件大體上有三種類型:

類型

在哪定義

項目級(Per Project)

定義在項目的POM文件pom.xml中

用戶級 (Per User)

定義在Maven的設(shè)置xml文件中 (%USER_HOME%/.m2/settings.xml)

全局(Global)

定義在 Maven 全局的設(shè)置 xml 文件中 (%M2_HOME%/conf/settings.xml)

配置文件激活

? Maven的構(gòu)建配置文件可以通過多種方式激活。

? 使用命令控制臺輸入顯式激活。

? 通過 maven 設(shè)置。

? 基于環(huán)境變量(用戶或者系統(tǒng)變量)。

? 操作系統(tǒng)設(shè)置(比如說,Windows系列)。

? 文件的存在或者缺失。

配置文件激活實例

假定項目結(jié)構(gòu)如下:

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

文件名

描述

env.properties

如果未指定配置文件時默認(rèn)使用的配置。

env.test.properties

當(dāng)測試配置文件使用時的測試配置。

env.prod.properties

當(dāng)生產(chǎn)配置文件使用時的生產(chǎn)配置。

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

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

⒈ 配置文件激活

profile 可以讓我們定義一系列的配置信息,然后指定其激活條件。這樣我們就可以定義多個 profile,然后每個 profile 對應(yīng)不同的激活條件和配置信息,從而達(dá)到不同環(huán)境使用不同配置信息的效果。

以下實例,我們將 maven-antrun-plugin:run 目標(biāo)添加到測試階段中。這樣我們可以在不同的 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>

注意:構(gòu)建配置文件采用的是 節(jié)點。

說明:上面新建了三個 ,其中 區(qū)分了不同的 執(zhí)行不同的 AntRun 任務(wù);而 AntRun 的任務(wù)可以這么理解,AntRun 監(jiān)聽 test 的 Maven 生命周期階段,當(dāng) Maven 執(zhí)行 test 時,就除了發(fā) AntRun 的任務(wù),任務(wù)里面為輸出文本并復(fù)制文件到指定的位置;而至于要執(zhí)行哪個 AntRun 任務(wù),此時構(gòu)建配置文件起到了傳輸指定的作用,比如,通過命令行參數(shù)輸入指定的 。

執(zhí)行命令:

mvn test -Ptest

提示:第一個 test 為 Maven 生命周期階段,第 2 個 test 為構(gòu)建配置文件指定的 參數(shù),這個參數(shù)通過 -P 來傳輸,當(dāng)然,它可以是 prod 或者 normal 這些由你定義的<id>

運行的結(jié)果如下:

可以看出成功的觸發(fā)了AntRun的任務(wù)。并且是對應(yīng)構(gòu)建配置文件下的 為 test 的任務(wù)。

再測試其余兩個命令,結(jié)果如下:

⒉ 通過Maven設(shè)置激活配置文件

打開 %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:此時不需要使用 -Ptest 來輸入?yún)?shù)了,上面的 setting.xml 文件的 已經(jīng)指定了 test 參數(shù)代替了。

提示 2:同樣可以使用在 %M2_HOME%/conf/settings.xml 的文件進(jìn)行配置,效果一致。

執(zhí)行結(jié)果:

⒊ 通過環(huán)境變量激活配置文件

先把上一步測試的 setting.xml 值全部去掉。

然后在 pom.xml 里面的 <id>  為 test 的 <profile> 節(jié)點,加入 <activation> 節(jié)點:

<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)境變量,其中 evn 對應(yīng)剛才設(shè)置的 <name> 值,test 對應(yīng)<value>。

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

執(zhí)行結(jié)果:

⒋ 通過操作系統(tǒng)激活配置文件

activation 元素包含下面的操作系統(tǒng)信息。當(dāng)系統(tǒng)為 windows XP 時,test Profile 將會被觸發(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)在打開命令控制臺,跳轉(zhuǎn)到 pom.xml 所在目錄,并執(zhí)行下面的 mvn 命令。不要使用 -P 選項指定 Profile 的名稱。Maven 將顯示被激活的 test Profile 的結(jié)果。

mvn test

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

現(xiàn)在使用 activation 元素包含下面的操作系統(tǒng)信息。當(dāng) target/generated-sources/axistools/wsdl2java/com/companyname/group 缺失時,test Profile 將會被觸發(fā)。

<profile>
   <id>test</id>
   <activation>
      <file>
         <missing>target/generated-sources/axistools/wsdl2java/
         com/companyname/group</missing>
      </file>
   </activation>
</profile>

現(xiàn)在打開命令控制臺,跳轉(zhuǎn)到 pom.xml 所在目錄,并執(zhí)行下面的 mvn 命令。不要使用 -P 選項指定 Profile 的名稱。Maven 將顯示被激活的 test Profile 的結(jié)果。

mvn test

 

全部教程
主站蜘蛛池模板: 免费黄色影院 | 狠狠色丁香久久婷婷综合五月 | 干干操| 欧美成人剧情中文字幕 | 波多野结衣亚洲 | 亚洲性爰视频 | 短视频91 | 美女一级毛片毛片在线播放 | www.色网| 天天拍拍天天爽免费视频 | 黄色a一片| 欧美成人久久一级c片免费 欧美成人看片 | 欧美精品99久久久久久人 | 一个人看的www在线 一个人看的www在线播放 | 国产精彩 | 免费观看性欧美特黄 | 国产在线视频你懂得 | 一个人看的免费高清视频www | 麻豆工作室| 日本x片 | 国产一级一国产一级毛片 | 黄色片在线 | 国产91视频观看 | 91精品国产免费久久国语蜜臀 | 欧美黄色高清视频 | 婷婷久久久五月综合色 | 国产成人a一区二区 | 青草欧美| 黄色在线免费观看网址 | 免费在线观看黄网站 | 国产99视频在线观看 | 国内一区二区三区精品视频 | 成人午夜在线观看 | www.色老头.com | 又黄又爽的美女免费视频 | 中国一级黄色片 | 精品一区二区三区波多野结衣 | 日韩在线1| 91成人精品| 欧美做a一级视频免费观看 欧美最猛性xxxxx短视频 | 日韩一级视频 |