欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Maven中profile和filtering实现多个环境下的属性过滤 maven属性过滤与替换profile 

程序员文章站 2022-05-02 14:29:13
...

背景

项目构建的时候,需要根据不同的场景来改变项目中的属性资源,最为常见的莫过于数据库连接配置了,试想有生产环境、测试环境、发布环境等,需要为不同的场景下来动态的改变数据库的连接配置。而使用maven就可以帮我们解决这些问题。下面就来分享一下maven中的profile和filtering的属性。

 

为了便于测试一下功能,需要搭建maven的web项目,具体配置请详见如何用maven创建web项目

 

filtering功能

 

主要用来替换项目中的资源文件(*.xml、*.properties)当中的${...},比如${db.url},那么如果配置了db.url=aaa的话,在项目编译的时候,就会自动的把${db.url}替换为aaa,下面以实例来讲解一下

 

采取参照博客中创建完maven的web项目后,会看到src/main/resources的目录,在此目录下面创建个“test.properties”,里面随便来上一行,例如Hello ${user.name},好了,接下来修改我们的pom文件,来启动filtering功能

 

 

 
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"      
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">  
  3.     <modelVersion>4.0.0</modelVersion>  
  4.     <groupId>testwebProject</groupId>  
  5.     <artifactId>com.test.web.test</artifactId>  
  6.     <version>0.0.1-SNAPSHOT</version>  
  7.     <packaging>war</packaging>  
  8.     <build>  
  9.         <!--第一种方式,两种方式都需要指定需要编译的目录 -->  
  10.         <resources>  
  11.             <resource>  
  12.                 <directory>src/main/resources</directory>  
  13.                 <!--可以在此配置过滤文件  -->  
  14.                 <includes>  
  15.                     <include>**/*.properties</include>  
  16.                 </includes>  
  17.                 <!--开启filtering功能  -->  
  18.                 <filtering>true</filtering>  
  19.             </resource>  
  20.         </resources>  
  21.   
  22.         <plugins>  
  23.             <plugin>  
  24.                 <artifactId>maven-war-plugin</artifactId>  
  25.             </plugin>  
  26.         </plugins>  
  27.     </build>  
  28. </project>



 

然后编译我们的maven项目

$mvn clean compile -Duser.name=tom

编译完后,查看输出文件 target/classes/test.properties 的内容,可见原先的 “Hello {user.name}” 已经变成 “Hello Tom”。

 

上面如果麻烦的话,也可以把filtering用到的变量写在项目得属性段里面,如下面的方式

 

 
  1.     <!--也可以配置到外部属性里面 -->  
  2.     <properties>  
  3.         <user.name>Lucky</user.name>  
  4.         <user.age>50</user.age>  
  5.     </properties>

 

 

 

进行编译,$mvn clean compile,在此查看的话,就会看到属性被替换的效果

当然了,如果属性比较多的话,那么此时可以把属性单独抽取出来一个*.properties文件来保存,例如我们在pom.xml的同级目录下面创建一个project.properties,里面指明我们的内容

user.name=Lucky

紧接着在修改我们的pom文件,如下

 

 
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  2.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">  
  3.     <modelVersion>4.0.0</modelVersion>  
  4.     <groupId>testwebProject</groupId>  
  5.     <artifactId>com.test.web.test</artifactId>  
  6.     <version>0.0.1-SNAPSHOT</version>  
  7.     <packaging>war</packaging>  
  8.   
  9.   
  10.     <build>  
  11.         <!--第一种方式,两种方式都需要指定需要编译的目录 -->  
  12.         <resources>  
  13.             <resource>  
  14.                 <directory>src/main/resources</directory>  
  15.                 <!--可以在此配置过滤文件 -->  
  16.                 <includes> 
  17.                     <include>**/*.properties</include>  
  18.                 </includes>  
  19.                 <!--开启filtering功能 -->  
  20.                 <filtering>true</filtering>  
  21.             </resource>  
  22.         </resources>  
  23.   
  24.         <filters>  
  25.             <!-- 写相对路径时是以该pom文件路径作为参考
  26.                  也可以直接写绝对路径, 如:C:\project.properties
  27.             -->  
  28.             <filter>C:\project.properties</filter>  
  29.         </filters>  
  30.   
  31.   
  32.         <plugins>  
  33.             <plugin>  
  34.                 <artifactId>maven-war-plugin</artifactId>
  35.             </plugin>  
  36.         </plugins>  
  37.     </build>  
  38. </project>  

 

 

再次执行编译命令的话,就会看到效果



profile功能

允许在项目文件(pom.xml)里面定义若干个profile段,然后在编译时选择其中的一个用于覆盖项目文件原先的定义。接着上一个例子,如果我们需要为开发环境和生产环境定义不同的 user.name 属性值,则我们在项目目录里创建两个属性文件分别是pre.properties和dev.properties,然后再每个文件里分别写入user.name=lucky和user.name=wangwang,然后在此修改我们的pom文件,修改后如下所示

 

 
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"      
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">  
  3.     <modelVersion>4.0.0</modelVersion>  
  4.     <groupId>testwebProject</groupId>  
  5.     <artifactId>com.test.web.test</artifactId>  
  6.     <version>0.0.1-SNAPSHOT</version>  
  7.     <packaging>war</packaging>  
  8.   
  9.     
  10.     <profiles>  
  11.             <profile>  
  12.                 <id>dev</id>  
  13.                 <activation>  
  14.                 <!--默认的编译选项  -->  
  15.                     <activeByDefault>true</activeByDefault>  
  16.                 </activation>  
  17.                 <build>  
  18.                     <filters>  
  19.                         <filter>c:\pre.properties</filter>  
  20.                     </filters>  
  21.                 </build>  
  22.             </profile>  
  23.   
  24.             <profile>  
  25.                 <id>pre</id>  
  26.                 <build>  
  27.                     <filters>  
  28.                         <filter>c:\dev.properties</filter>  
  29.                     </filters>  
  30.                 </build>  
  31.             </profile>  
  32.     </profiles>
  33.  
  34.     <build>  
  35.         <!--第一种方式,两种方式都需要指定需要编译的目录 -->  
  36.         <resources>  
  37.             <resource>  
  38.                 <directory>src/main/resources</directory>  
  39.                 <!--可以在此配置过滤文件 -->  
  40.                 <includes>
  41.                     <include>**/*.properties</include>  
  42.                 </includes>  
  43.                 <!--开启filtering功能 -->  
  44.                 <filtering>true</filtering>  
  45.             </resource>  
  46.         </resources>  
  47.   
  48.         <plugins>  
  49.             <plugin>  
  50.                 <artifactId>maven-war-plugin</artifactId>
  51.             </plugin>  
  52.         </plugins>  
  53.     </build>  
  54. </project> 


在编译项目时,可以使用 -P 参数指定需要使用的 profile 的 id,比如下面命令将会使用 dev profile

 

$mvn clean compile -Pdev

如果想使用pre,只需要改为以下即可

$mvn clean compile -Ppre

假如不指定 -P 参数的话,则会使用 activeByDefault=true 的一项(即 pre)。

 

 

引用:http://blog.csdn.net/luckyzhoustar/article/details/50411962