【加载多个properties文件时,Spring只识别第一个 】 | IT修真院·坑乎
问题已收录 加载多个properties文件时,Spring只识别第一个
我也踩过这个坑( 1 )
已统计您的踩坑,无需重复点击
回答(2)
详细描述
错误截图
源码
编辑于2024-11-24
  • [无名弟子]张高愿
    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-7161
    0

    这个需要加个属性 

    <!-- 引入配置文件 -->
    <context:property-placeholder location="classpath:generator.properties" ignore-unresolvable="true"/>


    编辑于2019-06-14