使用maven profile實現多環境配置相關打包
阿新 • • 發佈:2017-05-20
本地 ces 軟件測試 測試 project oca rect fault uil
項目開發需要有多個環境,一般為開發,測試,預發,正式4個環境,通過maven可以實現按不同環境進行打包部署,命令為:
mvn package -P dev
在eclipse中可以右擊選項run configuration,輸入上述命令。
PS:eclipse maven install和maven packege的區別在於前者除了打包到target外,還會install到本地倉庫,這樣其他引用的工程就可直接使用。
其中“dev“為環境的變量id, 可以自己定義, 我定義的名稱為:dev,qa,pre,prod , 具體在pom.xml中的配置如下:
- <?xml version="1.0" encoding="UTF-8"?>
- <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">
- ......
- <profiles>
- <profile>
- <id>dev</id>
- <properties>
- <env>dev</env>
- </properties>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- </profile>
- <profile>
- <id>qa</id>
- <properties>
- <env>qa</env>
- </properties>
- </profile>
- <profile>
- <id>pre</id>
- <properties>
- <env>pre</env>
- </properties>
- </profile>
- <profile>
- <id>prod</id>
- <properties>
- <env>prod</env>
- </properties>
- </profile>
- </profiles>
- ......
- <build>
- <filters>
- <filter>config/${env}.properties</filter>
- </filters>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- </resource>
- </resources>
- ......
- </build>
- </project>
1.profiles定義了各個環境的變量id
2.filters中定義了變量配置文件的地址,其中地址中的環境變量就是上面profile中定義的值
3.resources中是定義哪些目錄下的文件會被配置文件中定義的變量替換,一般我們會把項目的配置文件放在src/main/resources下,像db,bean等,裏面用到的變量在打包時就會根據filter中的變量配置替換成固定值
使用maven profile實現多環境配置相關打包