我正在使用Eclipse,并且已在“构建”菜单中自动启用“构建”。
我有这样的运行配置。
它指向Spring Boot App中的ResourceServerApplication.java。
问题是在构建工作空间之后,我尝试运行此调试模式,将出现一条错误消息:“无法解析字符串值中的占位符。”
然后,我必须在Eclipse中运行clean install命令,以使上述DEBUG模式起作用。
编辑:
通过在spring.xml中使用以下代码,我已经包含了来自多个maven项目的多个属性文件。
<context:property-placeholder location="classpath:config/my-config1.properties" ignore-unresolvable="true" system-properties-mode="OVERRIDE"/>
<context:property-placeholder location="classpath:config/my-config2.properties" ignore-unresolvable="true" system-properties-mode="OVERRIDE"/>