@AspectJ 包的执行方法的切入点
我想执行特定包中的execute方法。
可能的切入点是什么?
注意:我正在使用 @AspectJ 风格的 Spring AOP。
I want to execute a execute method in a specific package.
What could be a possible pointcut for this?
Note: I am using @AspectJ style Spring AOP.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这里 http://www.eclipse.org/aspectj/doc/released/adk15notebook/annotations-pointcuts-and-advice.html" eclipse.org/aspectj/doc/released/adk15notebook/annotations-pointcuts-and-advice.html
所以你应该有以下aop配置:
和这个建议的匹配bean
拦截器应该实现org.aopalliance.intercept.MethodInterceptor
Have a look here http://www.eclipse.org/aspectj/doc/released/adk15notebook/annotations-pointcuts-and-advice.html
So you should have the following aop config:
and matching bean for this advice
Interceptor should implement org.aopalliance.intercept.MethodInterceptor