Grails - Removing Spring Security Kernel

What is the correct way to completely remove the spring-security-core plugin? I am working on a Grails application that no longer needs a login, and I would like to remove it.

Despite the fact that I deleted it with:

grails uninstall-plugin spring-security-core

The [spring-security-core-1.1.3] plugin is installed, but not found in the application metadata, do you want to remove it? [W, n] My choice seems to have no effect.

I keep getting the message "Configuring Spring Security ..." when the application starts.

+3
source share
2 answers

uninstall-plugin , . application.properties , $HOME/.grails/<grails version>/projects/<your project>/plugins. grails clean, .

, _Uninstall.groovy script, Spring Security Core ( ).

+10

, Spring beans, , , . , springSecurityService //etc - beans /

+2

All Articles