ThisJoinPoint can only get the current method information, anyway to get the caller method information?
相关问题
- Android Annotations and MonkeyTalk?
- When I apply AspectJ to Android project with Andro
- AspectJ: @AfterReturning
- Maven Aspectj plugin calls the JPA model generator
- Best solution for using AOP with OSGI?
相关文章
- Disabling certain aspects during unit test runs
- AspectJ not capture calls from jar file
- Dynamic values are not supported as attributes in
- How can I log private methods via Spring AOP?
- how to write an aspectj itd to add an annotation t
- AspectJ Pointcut on Methods with Multiple Annotati
- AspectJ - Retrieve list of annotated parameters
- Does a set() field pointcut get invoked if field i
You can try the special variable
thisEnclosingJoinPointStaticPart
which holds the static part of the enclosing JoinPoint.Mentioned here (example) and here (docs)
Or if using annotation-based AspectJ, pass following to the advice method's parameters, e.g.:
Mentioned here