首頁 > 軟體

Maven發布時在不同的環境使用不同的組態檔

2020-06-16 17:20:09

在Maven開發時,不同的環境總會使用到不同的設定。如本地,測試,預發布,發布等環境,像資料庫這些都要使用到不同的設定。如果手動改的話肯定會十分的麻煩。

還好maven提供的功能能夠幫我們解決這個問題。

我們通過不同環境使用不同資料庫的設定來說明

直接上程式碼:

1.db.properties

jdbc.username=${jdbc.username}
jdbc.password=${jdbc.password}
jdbc.url=${jdbc.url}
name=${myName}

2.dev.properties

jdbc.url=jdbc:MySQL://127.0.0.1:3306/devdb?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull
jdbc.username=devuser
jdbc.password=dev123456

3.product.properties

jdbc.url=jdbc:mysql://127.0.0.1:3306/productdb?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull
jdbc.username=productuser
jdbc.password=product123456

4.test.properties

jdbc.url=jdbc:mysql://127.0.0.1:3306/testdb?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull
jdbc.username=testuser
jdbc.password=test123456

5.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>mavenImparityProfile</groupId>
  <artifactId>mavenImparityProfile</artifactId>
  <packaging>war</packaging>
  <version>1.0-SNAPSHOT</version>
  <name>mavenImparityProfile Maven Webapp</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>
            <properties>
                <env>test</env><!--相當於定義一個變數 供下面使用-->
                <myName>張三</myName><!--使用一個properties檔案中未定義,但是其他地方會取值的變數-->
            </properties>
            <activation><!--預設啟用-->
                <activeByDefault>true</activeByDefault>
            </activation>
        </profile>
        <profile>
            <id>dev</id>
            <properties>
                <env>dev</env>
                <myName>李四</myName>
            </properties>
            <activation><!--預設啟用-->
                <activeByDefault>false</activeByDefault>
            </activation>
        </profile>
        <profile>
            <id>product</id>
            <properties>
                <env>product</env>
            </properties>
        </profile>
    </profiles>
  <build>
    <finalName>mavenImparityProfile</finalName>
      <filters><!--獲得過濾使用的原始檔  即有實際資料的地反-->
          <filter>src/main/resources/properties/${env}.properties</filter>
      </filters>

      <!-- 指定 src/main/resources下所有檔案及資料夾為資原始檔 -->
      <resources>
        <resource>
            <directory>src/main/resources</directory>
             <filtering>true</filtering> <!--是否使用過濾器-->
         </resource>
          <!-- 第二中方式 設定對dev.properties,等進行過慮,即這些檔案中的${key}會被替換掉為真正的值-->
          <!-- <resource>
              <directory>src/main/resources/properties/properties</directory>&lt;!&ndash;一定要指向上層目錄&ndash;&gt;
              <includes>
                  &lt;!&ndash;要遍歷出來檔案都必須寫&ndash;&gt;
                  <include>product.properties</include>
                  <include>test.properties</include>
                  <include>dev.properties</include>
                  <include>db.properties</include>
              </includes>
              <filtering>true</filtering>
          </resource>-->
     </resources>
  </build>

</project>

其實現主要是通過設定frofile來實現。上面設定了3個環境(test,dev,product)。test環境是預設啟用的。

我們直接執行 deploy 則使用的是test的設定。

如果要使用product的設定,則使用maven的命令 mvn clean package -P product (註:-P要大寫 -P後面的引數是我們前面定義不同環境的id。如果你使用的是idea工具,在設定run的時候不用寫mvn這個引數)

附錄:

如果要設定jenkins,其他的引數設定不變,只需要修改maven的命令

這裡是發布product環境

Maven權威指南_中文完整版清晰PDF  http://www.linuxidc.com/Linux/2014-06/103690.htm

Maven 3.1.0 發布,專案構建工具 http://www.linuxidc.com/Linux/2013-07/87403.htm

Linux 安裝 Maven http://www.linuxidc.com/Linux/2013-05/84489.htm

Ubuntu 16.04 安裝Maven3.3.9 http://www.linuxidc.com/Linux/2017-02/140097.htm

Maven3.0 設定和簡單使用 http://www.linuxidc.com/Linux/2013-04/82939.htm

Ubuntu下搭建sun-jdk和Maven2 http://www.linuxidc.com/Linux/2012-12/76531.htm

Maven使用入門 http://www.linuxidc.com/Linux/2012-11/74354.htm

Ubuntu 下 搭建Nexus Maven私服中央倉庫  http://www.linuxidc.com/Linux/2016-08/133936.htm

本文永久更新連結地址http://www.linuxidc.com/Linux/2017-03/141398.htm


IT145.com E-mail:sddin#qq.com