首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 其他相关 >

使用maven在不同环境下设立properties文件的值

2013-11-21 
使用maven在不同环境下设置properties文件的值有这样一个需求,在使用maven部署项目时,项目中properties文

使用maven在不同环境下设置properties文件的值
有这样一个需求,在使用maven部署项目时,项目中properties文件的某些变量需要根据不同的环境(测试,线上)设置不同的值。

1. property文件
    resources.static.host=${resources.static.host}

2. pom文件

<build>
   <resources>
        <resource>
             <directory>src/main/resources</directory>
                      *** property文件目录  ****
             <filtering>true</filtering>
        </resource>
    </resources>
            ....
        </build>
        <profiles>
             <profile>
           <id>production</id>
           <properties>
<resources.static.host>xxxxxxxx.</resources.static.host>
            </properties>
             </profile>
        </profiles>

热点排行