加载多个properties文件时,Spring只识别第一个
我也踩过这个坑( 1 )
详细描述
错误截图
源码
编辑于2024-11-23
-
[无名弟子]张高愿0
在引入properties文件的时候设置ignore-resource-not-found="true",比如:
<util:properties id="util_Spring" local-override="true" location="classpath:properties/druid-config.properties" ignore-resource-not-found="true"/>
编辑于2018-12-28 -
[郑州|散修弟子]JAVA-71610
这个需要加个属性
<!-- 引入配置文件 -->
<context:property-placeholder location="classpath:generator.properties" ignore-unresolvable="true"/>编辑于2019-06-14
- 去第 页