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