优化Pointcut

master
linlei 2024-04-07 16:56:59 +08:00
parent 63ffb8bf82
commit 33e976a49e
1 changed files with 4 additions and 0 deletions

View File

@ -122,6 +122,10 @@ public interface Pointcut {
+ 始终匹配的切入点,代表不进行任何匹配,即匹配所有的类和方法。
7. **AnnotationMatchingPointcut**
+ 用于基于注解匹配的切入点定义。它可以根据指定的注解类型匹配类或方法,并用于将通知应用于带有特定注解的目标对象的方法。
### 七、最佳实践
#### 自定义Pointcut