让A成为我的核心jar maven项目类。在另一个项目中,W是我的战争。我已经添加了A作为我对W的依赖。我已将prop.properties文件存储在资源文件夹中的A中。如何在我的战争中使用 classpath 从jar访问属性文件。使用Spring 4。 我已经使用以下内容更新了jar的spring.xml:
<context:property-placeholder
location="classpath:prop.properties" ignore-unresolvable="true"/>
答案 0 :(得分:8)
在classpath
之后使用Asterisk这将告诉spring在类路径中查找所有添加的依赖项中的配置:
<context:property-placeholder
location="classpath*:prop.properties" ignore-unresolvable="true"/>