use of grails.core.support.GrailsConfigurationAware in project grails-core by grails.
the class AbstractGrailsApplication method configChanged.
@Override
public void configChanged() {
updateFlatConfig();
final ArtefactHandler[] handlers = getArtefactHandlers();
if (handlers != null) {
for (ArtefactHandler handler : handlers) {
if (handler instanceof GrailsConfigurationAware) {
((GrailsConfigurationAware) handler).setConfiguration(config);
}
}
}
}
Aggregations