This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Description
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};
}