is there a way to change the properties of a spring bean (service) at runtime? I'm using grails for a small app, where the user is able to change some settings. These settings are written into a property file, which is in the ext config params at grails. So when I restart the application, the properties are read in and the bean is init with this changes, is there a way to reload my service without a full restart?
What I would like to achieve that the user can pass is settings to the service and everything is available at runtime.