我想使用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 中的值。
请告知如何让它发挥作用。谢谢。