作者回复: @Pointcut("execution(public * *(..))") 是 AspectJ 表达式,@Before("anyPublicMethod()") 中的 anyPublicMethod() 是去引用方法上 @Pointcut 的定义
作者回复: 在后面的章节会讨论到~