我使用Authentication 2.0.1
spring安全插件来验证我的网络服务。我成功登录并通过身份验证服务设置用户会话。我还在身份验证控制器中获得sessionUser
和isLoggedIn
成功响应。但同样的事情我无法从其他控制器访问。请查看我的代码,我无法访问身份验证控制器以外的身份验证服务,请帮忙。提前谢谢。
class ModuleController {
def authenticationService
def beforeInterceptor = [action: this.&auth]
private auth() {
println 'checking authentication in module controller : '+authenticationService.isLoggedIn(request)
}
}