企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
注解方式 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