Srping, autowire @Value from a database
- by Guido
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 the properties from a database instead of a file ?