I\'m reading properties file using context:property-placeholder. How can I access them programatically (@Value doesn\'t work - I d
context:property-placeholder
@Value
Let's asume that you the properties file defined in that "parent" framework
You can use the @Value annotation in this way:
@Value( value = "#{applicationProperties['my.app.property']}" ) private String myProperty;