次のように、 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 の値を置き換えることができません。
それを機能させる方法を教えてください。ありがとう。