通过classpath Spring访问war tomcat中依赖关系jar中的属性文件

时间:2016-08-03 09:30:18

标签: java spring maven tomcat

让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"/>

1 个答案:

答案 0 :(得分:8)

classpath之后使用Asterisk这将告诉spring在类路径中查找所有添加的依赖项中的配置:

<context:property-placeholder 
 location="classpath*:prop.properties" ignore-unresolvable="true"/>