autowire « Database « Spring Q&A





1. Spring, autowire @Value from a database    stackoverflow.com

I am using a properties File to store some configuration properties, that are accessed this way:

@Value("#{configuration.path_file}")
private String pathFile;
Is it possible (with Spring 3) to use the same @Value annotation, but loading ...