ReloadablePropertiesAnnotation
ReloadablePropertiesAnnotation copied to clipboard
Missing overriding setLocation in ReadablePropertySourcesPlaceholderConfigurer
in ReadablePropertySourcesPlaceholderConfigurer only setLocations method is overrided, simply add the following to have setLocation working aswell, if not you, will get a NullPointerException when starting PropertiesWatcher task.
@Override
public void setLocation(Resource location) {
super.setLocation(location);
this.locations = new Resource[] {location};
}