配置文件,环境配置和war报分离,方便生产更改

在生产环境实现配置文件和war包 的分离,为方便在必要的时候进行一定的更改,可以避免修改包,但是需要重启

最初为这样的选择配置,单不知为何未生效,修改为配置2配置方法,但不灵活,待跟进。
配置1:

<context:property-placeholder
ignore-resource-not-found="true"
location="file:${CONF_PATH}/${sysconfig.properties.file},classpath*:/${sysconfig.properties.file}" />

配置2:
<!-- 环境配置和war包分离 以外部配置为准-->

<context:property-placeholder 
order="1" 
ignore-resource-not-found="true"
ignore-unresolvable="true" 
location="file:${CONF_PATH}/${sysconfig.properties.file}" />

<context:property-placeholder 
order="2" 
ignore-resource-not-found="true" 
ignore-unresolvable="false"
location="classpath*:/${sysconfig.properties.file}" />

 

注:order 值越小,优先级越高

转载于:https://www.cnblogs.com/lianshan/p/5660833.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值