让A成为我基于jar Maven的核心项目类。W是我在另一个项目中的战争。我已将A添加为对W的依赖项。我已将prop.properties文件存储在资源文件夹中的A中。在我的战争中,如何使用 类路径 从jar访问属性文件。使用Spring4。我用以下命令更新了jar的spring.xml:
<context:property-placeholder location="classpath:prop.properties" ignore-unresolvable="true"/>
之后使用Asterisk,classpath这将告诉Spring在类路径中所有已添加的依赖项中寻找配置:
classpath
<context:property-placeholder location="classpath*:prop.properties" ignore-unresolvable="true"/>