Spring安全与AOP
是否可以创建自定义 @Aspect 并将其应用到 Spring Security (3.0.3) 中的类/方法?
我正在尝试记录登录/注销请求,但我的建议都没有被触发。
我正在使用 @AspectJ 注释,以下是我装饰方法的方式:
@After("execution (* org.springframework.security.authentication.ProviderManager.doAuthentication(..))")
Is it possible to create a custom @Aspect and apply it to the Classes/Methods within Spring Security (3.0.3)?
I'm trying to do some logging of logon/logoff requests and none of my Advices are being triggered.
I'm using @AspectJ annotations and here is how I'm decorating my method:
@After("execution (* org.springframework.security.authentication.ProviderManager.doAuthentication(..))")
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
而是使用
ApplicationListener
来捕获成功的登录。请参阅 Javadocs 用于其他事件类型。Rather use
ApplicationListener
to catch the successful login. See the Javadocs for other event types.