我是靠谱客的博主 轻松小刺猬,最近开发中收集的这篇文章主要介绍Maven-filter和resourcemaven 的 properties 加载顺序利用filter实现对资源文件(resouces)过滤利用profile来切换环境测试环境生产环境,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
maven 的 properties 加载顺序
- 中的配置
- pom.xml 中的
- mvn -Dproperty=value中定义的 property
利用filter实现对资源文件(resouces)过滤
maven filter可利用指定的xxx.properties中对应的key=value对资源文件中的${key}进行替换,最终把你的资源文件中的username=${key}替换成username=value
<!-- 过滤器,用于过滤resource中的各个文件 -->
<filters>
<filter>src/main/resources/filtersTest.properties</filter>
</filters>
<resources>
<resource>
<directory>src/main/resources</directory>
<!-- 是否使用过滤器 -->
<filtering>true</filtering>
</resource>
</resources>
利用profile来切换环境
maven profile可使用操作系统信息,jdk信息,文件是否存在,属性值等作为依据,来激活相应的profile,也可在编译阶段,通过mvn命令加参数 -PprofileId 来手工激活使用对应的profile
<profiles>
<profile>
<id>dev</id>
<!-- 默认激活开发配制,使用config-dev.properties来替换设置过虑的资源文件中的${key} -->
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<filters>
<filter>config-dev.properties</filter>
</filters>
</build>
</profile>
<profile>
<id>test</id>
<build>
<filters>
<filter>config-dev.properties</filter>
</filters>
</build>
</profile>
<profile>
<id>product</id>
<build>
<filters>
<filter>config-product.properties</filter>
</filters>
</build>
</profile>
</profiles>
测试环境
手工编译,打包:maven clean install -Ptest -- 激活id="test"的profile
生产环境
手工编译,打包:maven clean install -Pproduct -- 激活id="product"的profile
最后
以上就是轻松小刺猬为你收集整理的Maven-filter和resourcemaven 的 properties 加载顺序利用filter实现对资源文件(resouces)过滤利用profile来切换环境测试环境生产环境的全部内容,希望文章能够帮你解决Maven-filter和resourcemaven 的 properties 加载顺序利用filter实现对资源文件(resouces)过滤利用profile来切换环境测试环境生产环境所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复