欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mybatis 实现 SQL 查询拦截修改详解

程序员文章站 2022-09-24 13:53:26
前言 截器的一个作用就是我们可以拦截某些方法的调用,我们可以选择在这些被拦截的方法执行前后加上某些逻辑,也可以在执行这些被拦截的方法时执行自己的逻辑而不再执行被拦截的方法...

前言

截器的一个作用就是我们可以拦截某些方法的调用,我们可以选择在这些被拦截的方法执行前后加上某些逻辑,也可以在执行这些被拦截的方法时执行自己的逻辑而不再执行被拦截的方法。

mybatis拦截器设计的一个初衷就是为了供用户在某些时候可以实现自己的逻辑而不必去动mybatis固有的逻辑。比如我想针对所有的sql执行某个固定的操作,针对sql查询执行安全检查,或者记录相关sql查询日志等等。

mybatis为我们提供了一个interceptor接口,可以实现自定义的拦截器。

 public interface interceptor {
 object intercept(invocation invocation) throws throwable;
 object plugin(object target);
 void setproperties(properties properties);
}

接口中包含了三个方法定义

intercept方法为具体的拦截对象的处理方法,传入的invocation包含了拦截目标类的实力,拦截的方法和方法的入参数组。使用invocation的procced执行原函数。

plugin 中执行判断是否要进行拦截进,如果不需要拦截,直接返回target,如果需要拦截则调用plugin类中的wrap静态方法,如果当前拦截器实现了任意接口,则返回一个代理对象,否则直接返回(回忆代理模式的设计)。代理对象实际是一个plugin类实例,它实现了invocationhandler接口 ,invocationhandler接口仅包含invoke方法用于回调方法。

当执行代理对象的接口方法时,会调用plugin的invoke方法,它会把要执行的对象,方法和参数打包成invocation对象传给拦截器的intercept方法。invocation定义了一个procced方法,用于执行被拦截的原方法。

plugin类定义

public class plugin implements invocationhandler {
 
 private object target;
 private interceptor interceptor;
 private map, set> signaturemap;
 
 private plugin(object target, interceptor interceptor, map, set> signaturemap) {
  this.target = target;
  this.interceptor = interceptor;
  this.signaturemap = signaturemap;
 }
 
 public static object wrap(object target, interceptor interceptor) {
  map, set> signaturemap = getsignaturemap(interceptor);
  class type = target.getclass();
  class[] interfaces = getallinterfaces(type, signaturemap);
  if (interfaces.length > 0) {
   return proxy.newproxyinstance(
     type.getclassloader(),
     interfaces,
     new plugin(target, interceptor, signaturemap));
  }
  return target;
 }
 
 public object invoke(object proxy, method method, object[] args) throws throwable {
  try {
   set methods = signaturemap.get(method.getdeclaringclass());
   if (methods != null && methods.contains(method)) {
    return interceptor.intercept(new invocation(target, method, args));
   }
   return method.invoke(target, args);
  } catch (exception e) {
   throw exceptionutil.unwrapthrowable(e);
  }
 }
 
 private static map, set> getsignaturemap(interceptor interceptor) {
  intercepts interceptsannotation = interceptor.getclass().getannotation(intercepts.class);
  if (interceptsannotation == null) { // issue #251
   throw new pluginexception("no @intercepts annotation was found in interceptor " + interceptor.getclass().getname());   
  }
  signature[] sigs = interceptsannotation.value();
  map, set> signaturemap = new hashmap, set>();
  for (signature sig : sigs) {
   set methods = signaturemap.get(sig.type());
   if (methods == null) {
    methods = new hashset();
    signaturemap.put(sig.type(), methods);
   }
   try {
    method method = sig.type().getmethod(sig.method(), sig.args());
    methods.add(method);
   } catch (nosuchmethodexception e) {
    throw new pluginexception("could not find method on " + sig.type() + " named " + sig.method() + ". cause: " + e, e);
   }
  }
  return signaturemap;
 }
 
 private static class[] getallinterfaces(class type, map, set> signaturemap) {
  set> interfaces = new hashset>();
  while (type != null) {
   for (class c : type.getinterfaces()) {
    if (signaturemap.containskey(c)) {
     interfaces.add(c);
    }
   }
   type = type.getsuperclass();
  }
  return interfaces.toarray(new class[interfaces.size()]);
 }
 
}

setproperties 方法顾名思义,用于设置属性的。bean的属性初始化方法有很多,这是其中的一种。

mybatis提供了@intercepts注解用于声明当前类是拦截器,其值为@signature数组,表明要拦截的接口、方法以及对应的参数类型

@intercepts({@signature(method = "prepare", type = statementhandler.class, args = {connection.class}),
    @signature(method = "query", type = statementhandler.class, args = {java.sql.statement.class, resulthandler.class})})
public class tenantinterceptor implements interceptor {
.....

例如上面的类声明,第一个signature标注拦截了statementhandler类下的入参是一个connection的名为prepare的方法。

第二个signature标注拦截statementhandler类中包含2个入参(分别为statement和resulthandler类型)的名为query的方法。

最后,声明的interceptor需要注册到mybatis的plug中才能生效。

  <!-- 配置mybatis -->
  <bean id="sqlsessionfactory" class="org.mybatis.spring.sqlsessionfactorybean">
    <property name="datasource" ref="datasource"/>
    <property name="configlocation" value="classpath:mybatis/mybatis-config.xml"/>
    <!-- mapper扫描 -->
    <property name="mapperlocations" value="classpath:mybatis/*/*.xml"/>
    <property name="plugins">
      <array>
        <!-- 注册自己的拦截器 -->
        <bean id="paginationinterceptor" class="xxx.xxx.tenantinterceptor">
        </bean>
      </array>
    </property>
  </bean>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。