码迷,mamicode.com
首页 > 其他好文 > 详细

maven 不同环境加载不同的properties 文件

时间:2015-11-30 12:55:00      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

http://haohaoxuexi.iteye.com/blog/1900568 //参考文章

实际项目中pom配置如下

<profiles>
<profile>
<id>dev</id>
<properties>
<profile.environment>dev</profile.environment>
</properties>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile>
<id>online</id>
<properties>
<profile.environment>online</profile.environment>
</properties>
</profile>
</profiles>

 

maven 构建项目的参数如下

clean jetty:run -Pdev   //-P指定读取的文件,为测试环境

clean jetty:run -Ponline   //-P读取online 下的文件,正式的部署环境

maven 不同环境加载不同的properties 文件

标签:

原文地址:http://www.cnblogs.com/lilefordream/p/5006743.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!