It is possible to use the @Value annotation with a Spring PropertyPlaceholderConfigurer?
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" p:location="classpath:application-test.properties" />
The <util:properties id="appProperties" location="classpath:application-test.properties" />
works correct with @Value but i would like to use 1 way of configuring. Now i have the both of them pointing towards the same property file.