spring应用程序上下文文件和application.properties文件位于:
src/main/resources/META-INF/spring当我尝试加载属性文件时:
<context:property-placeholder local-override="true" location="classpath:/META_INF/spring/application.properties"/>获取错误:
class path resource [META_INF/spring/application.properties] cannot be opened because it does not exist我也试过:
<context:property-placeholder local-override="true" location="classpath:application.properties"/>
<context:property-placeholder local-override="true" location="application.properties"/>发布于 2015-01-18 12:46:30
尝试:
<context:property-placeholder local-override="true" location="classpath:/META-INF/spring/application.properties"/>而不是:
<context:property-placeholder local-override="true" location="classpath:/META_INF/spring/application.properties"/>https://stackoverflow.com/questions/28009740
复制相似问题