多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
注解方式 XML配置 Pointcut expression ## 注解方法 @AspectJ 注解 @Aspect @Pointcut Pointcut express designators 指示器 通过什么样的方式匹配java类的方法 ```utf-8 匹配方法 execution() 匹配注解 @target() @args() @within() @annotation() 匹配包/类型 within() 匹配对象 this() bean() target() 匹配参数 args() ``` wildcards 通配符 列举 ```utf-8 * 任意数量字符 + 匹配指定类及其子类 ..表达任意数的子包或参数 ``` operators 运算符 ```utf-8 && || ! ``` 5种Advice