in plugin-core/plugin/src/main/groovy/grails/plugin/springsecurity/SpringSecurityCoreGrailsPlugin.groovy [725:739]
void onChange(Map<String, Object> event) {
def conf = SpringSecurityUtils.securityConfig
if (!conf || !conf.active) {
return
}
if (event.source && grailsApplication.isControllerClass(event.source)) {
log.trace 'onChange for controller {}', event.source.name
if (SpringSecurityUtils.securityConfigType == 'Annotation') {
initializeFromAnnotations conf
}
}
}