I am using org.aspectj.lang.annotation.Pointcut
. I have an interface com.home.learn.Try.
- I want a pointcut annotation created to watch all methods of that class that implemets the interface (com.home.learn.Try)
我使用了@Pointcution(com.home.learn.Try.*(.))但一看错误。
Pointcut is not well-formed: expecting name pattern at character position 34
execution(com.home.learn.Try.*(..))
- I want a pointcut to watch(specific method) com.home.learn.Try.print(java.lang.String) method
同样,我很想知道,如何产生一点点说明,看看一看一流一流的某一具体类别的所有方法。
增 编