次の構成クラスがあります。
@Configuration
@PropertySource(name = "props", value = "classpath:/app-config.properties")
@ComponentScan("service")
public class AppConfig {
そして私は財産でサービスを持っています:
@Component
public class SomeService {
@Value("#{props['some.property']}") private String someProperty;
AppConfig構成クラスをテストしたいときにエラーが発生します
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'someService': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private java.lang.String service.SomeService.someProperty; nested exception is org.springframework.beans.factory.BeanExpressionException: Expression parsing failed; nested exception is org.springframework.expression.spel.SpelEvaluationException: EL1008E:(pos 0): Field or property 'props' cannot be found on object of type 'org.springframework.beans.factory.config.BeanExpressionContext'
この問題はSPR-8539に記載されています
しかしとにかく、それを機能させるためにPropertySourcesPlaceholderConfigurerを構成する方法を理解することはできません 。
編集1
このアプローチは、xml構成でうまく機能します
<util:properties id="props" location="classpath:/app-config.properties" />
しかし、構成にはJavaを使用したいと思います。