实现的大致步骤 1、我们的mapper层接口统一实现一个接口比如Mapper接口 2、Aspect切面定义时候切点匹配用this或者target eg: MethodInvocation methodInvocation = ExposeInvocationInterceptor.currentInvocation();这个句有值是因为Mapper代理的增强第一个就是ExposeInvocationInterceptor这个增强器会设置当前方法的MethodInvocation @Aspect @Order(value = Integer.MIN_VALUE + 3) public clas