I have a Spring MVC application. I am using someprops.property
file to get some global properties.
I am using Spring's Environment to get this.
@Autowired
private Environment env;
In some method
env.getProperty('some.prop');
My Question here is, will it read the file every time the program calls env.getProperty() or it will remember the last accessed prop and return from that.