我想使用 PropertyPlaceholderConfigurer 来读取 applicationContext.xml 文件中的pom文件,如下所示:
<context:component-scan base-package="${project.groupId}"/>
考虑到 pom文件具有以下内容:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.myapp</groupId>
这是 PropertyPlaceholderConfigurer 配置:
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:oauth_consumer.properties</value>
<value>classpath:application.properties</value>
</list>
</property>
</bean>
问题:PropertyPlaceholderConfigurer无法替换applicationContext.xml中的值。
请告知如何让它工作。感谢。
答案 0 :(得分:0)
发现问题,applicationContext位于 src / main / webapp / WEB-INF 下,但必须在 src / main / resources 下才能工作。