In Grails, the @Secured
annotation is used for method-level security, and @Secured('permitAll')
specifically means that the method or controller action is accessible to everyone, including unauthenticated users. This annotation is part of Spring Security in Grails applications.
@Secured('permitAll')
?Allow Public Access
Override Global Security Rules
permitAll
.Explicit Security Declaration
import grails.plugin.springsecurity.annotation.Secured
class PublicController {
@Secured('permitAll')
def home() {
render "Welcome to the public page!"
}
@Secured(['ROLE_USER', 'ROLE_ADMIN'])
def dashboard() {
render "Only logged-in users can see this!"
}
}
Instead of using @Secured('permitAll')
, you can also configure security in grails-app/conf/application.groovy
:
grails.plugin.springsecurity.controllerAnnotations.staticRules = [
[pattern: '/', access: ['permitAll']],
[pattern: '/public/**', access: ['permitAll']]
]