Is there a way to read text from external properties file in spring without using the @Value annotation. Ex: application.properties
@Value
var.foo=\"he
If you are using Spring Boot then you can try this method, without doing any special configuration
@environment.getProperty('property')