The Grails Spring Security plugin docs shows these two properties related to logout urls (copied from https://github.com/grails-plugins/grails-spring-security-core/blob/master/src/docs/guide/13%20URL%20Properties.gdoc)
logout.afterLogoutUrl | '/' | URL for redirect after logout.
logout.filterProcessesUrl | '/j_spring_security_logout' | Logout URL, intercepted by Spring Security filter.
When I run the s2-quickstart script to generate the LogoutController
, the default behavior is to redirect to logout.filterProcessesUrl
.
What is the purpose of logout.afterLogoutUrl
if the LogoutController
does not redirect to it?