我正在使用org.aspectj.lang.annotation.Pointcut
。我有一个接口com.home.learn.Try。
我使用了@Pointcut(“执行(com.home.learn.Try。*(..))”)但是我收到了错误
Pointcut is not well-formed: expecting 'name pattern' at character position 34
execution(com.home.learn.Try.*(..))
此外,我很好奇如何创建切入点注释来观察扩展抽象类的具体类的所有方法。
谢谢