0

我正在使用Authentication 2.0.1spring 安全插件来验证我的 web 服务。我通过 Authentication Service 成功登录并设置用户会话。我还在身份验证控制器中获得sessionUserisLoggedIn成功响应。但同样的事情我无法从其他控制器访问。请查看我的代码,除了身份验证控制器,我无法访问身份验证服务,请帮助。提前致谢。

class ModuleController {

       def authenticationService
       def beforeInterceptor = [action: this.&auth]

       private auth() { 

             println 'checking authentication in module controller : '+authenticationService.isLoggedIn(request)        
       }
}
4

0 回答 0