spring aop配置文件中execution后有多个条件

2024-12-01 07:52:32
推荐回答(1个)
回答1:

execution表达式中你可以拦截所有的类
但是在Aspect中可以判断类名,如果是不想处理的类,直接返回public void checkSecurity(JoinPoint jp) {
String className = jp.getTarget().getClass().getName()
System.out.println();
if(className.equals(..)) {
return ;
}
}