mybatis 攔截器原理

https://www.cnblogs.com/fangjian0423/p/mybatis-interceptor.html

PageHelper插件的原理和下面文章差不多屈张,主要就是把Executor做代理骗露,改變sql去查詢

MyBatis提供了一種插件(plugin)的功能填硕,雖然叫做插件,但其實(shí)這是攔截器功能距贷。那么攔截器攔截MyBatis中的哪些內(nèi)容呢?

我們進(jìn)入官網(wǎng)看一看:

MyBatis 允許你在已映射語(yǔ)句執(zhí)行過(guò)程中的某一點(diǎn)進(jìn)行攔截調(diào)用。默認(rèn)情況下计技,MyBatis 允許使用插件來(lái)攔截的方法調(diào)用包括:

  1. Executor (update, query, flushStatements, commit, rollback, getTransaction, close, isClosed)
  2. ParameterHandler (getParameterObject, setParameters)
  3. ResultSetHandler (handleResultSets, handleOutputParameters)
  4. StatementHandler (prepare, parameterize, batch, update, query)

我們看到了可以攔截Executor接口的部分方法,比如update山橄,query垮媒,commit,rollback等方法,還有其他接口的一些方法等涣澡。

總體概括為:

  1. 攔截執(zhí)行器的方法
  2. 攔截參數(shù)的處理
  3. 攔截結(jié)果集的處理
  4. 攔截Sql語(yǔ)法構(gòu)建的處理

攔截器的使用

攔截器介紹及配置
首先我們看下MyBatis攔截器的接口定義:

public interface Interceptor {

  Object intercept(Invocation invocation) throws Throwable;

  Object plugin(Object target);

  void setProperties(Properties properties);

}

比較簡(jiǎn)單贱呐,只有3個(gè)方法。 MyBatis默認(rèn)沒有一個(gè)攔截器接口的實(shí)現(xiàn)類入桂,開發(fā)者們可以實(shí)現(xiàn)符合自己需求的攔截器奄薇。

下面的MyBatis官網(wǎng)的一個(gè)攔截器實(shí)例:

@Intercepts({@Signature(
  type= Executor.class,
  method = "update",
  args = {MappedStatement.class,Object.class})})
public class ExamplePlugin implements Interceptor {
  public Object intercept(Invocation invocation) throws Throwable {
    return invocation.proceed();
  }
  public Object plugin(Object target) {
    return Plugin.wrap(target, this);
  }
  public void setProperties(Properties properties) {
  }
}

全局xml配置:

<plugins>
    <plugin interceptor="org.format.mybatis.cache.interceptor.ExamplePlugin"></plugin>
</plugins>

這個(gè)攔截器攔截Executor接口的update方法(其實(shí)也就是SqlSession的新增,刪除抗愁,修改操作)馁蒂,所有執(zhí)行executor的update方法都會(huì)被該攔截器攔截到。

源碼分析

下面我們分析一下這段代碼背后的源碼蜘腌。

首先從源頭->配置文件開始分析:

XMLConfigBuilder解析MyBatis全局配置文件的pluginElement私有方法:

private void pluginElement(XNode parent) throws Exception {
    if (parent != null) {
      for (XNode child : parent.getChildren()) {
        String interceptor = child.getStringAttribute("interceptor");
        Properties properties = child.getChildrenAsProperties();
        Interceptor interceptorInstance = (Interceptor) resolveClass(interceptor).newInstance();
        interceptorInstance.setProperties(properties);
        configuration.addInterceptor(interceptorInstance);
      }
    }
}

具體的解析代碼其實(shí)比較簡(jiǎn)單沫屡,就不貼了,主要就是通過(guò)反射實(shí)例化plugin節(jié)點(diǎn)中的interceptor屬性表示的類撮珠。然后調(diào)用全局配置類Configuration的addInterceptor方法沮脖。

public void addInterceptor(Interceptor interceptor) {
       interceptorChain.addInterceptor(interceptor);
     }

這個(gè)interceptorChain是Configuration的內(nèi)部屬性,類型為InterceptorChain芯急,也就是一個(gè)攔截器鏈勺届,我們來(lái)看下它的定義:

public class InterceptorChain {

  private final List<Interceptor> interceptors = new ArrayList<Interceptor>();

  public Object pluginAll(Object target) {
    for (Interceptor interceptor : interceptors) {
      target = interceptor.plugin(target);
    }
    return target;
  }

  public void addInterceptor(Interceptor interceptor) {
    interceptors.add(interceptor);
  }

  public List<Interceptor> getInterceptors() {
    return Collections.unmodifiableList(interceptors);
  }

}

現(xiàn)在我們理解了攔截器配置的解析以及攔截器的歸屬,現(xiàn)在我們回過(guò)頭看下為何攔截器會(huì)攔截這些方法(Executor娶耍,ParameterHandler免姿,ResultSetHandler,StatementHandler的部分方法):

public ParameterHandler newParameterHandler(MappedStatement mappedStatement, Object parameterObject, BoundSql boundSql) {
    ParameterHandler parameterHandler = mappedStatement.getLang().createParameterHandler(mappedStatement, parameterObject, boundSql);
    parameterHandler = (ParameterHandler) interceptorChain.pluginAll(parameterHandler);
    return parameterHandler;
}

public ResultSetHandler newResultSetHandler(Executor executor, MappedStatement mappedStatement, RowBounds rowBounds, ParameterHandler parameterHandler,
  ResultHandler resultHandler, BoundSql boundSql) {
    ResultSetHandler resultSetHandler = new DefaultResultSetHandler(executor, mappedStatement, parameterHandler, resultHandler, boundSql, rowBounds);
    resultSetHandler = (ResultSetHandler) interceptorChain.pluginAll(resultSetHandler);
    return resultSetHandler;
}

public StatementHandler newStatementHandler(Executor executor, MappedStatement mappedStatement, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) {
    StatementHandler statementHandler = new RoutingStatementHandler(executor, mappedStatement, parameterObject, rowBounds, resultHandler, boundSql);
    statementHandler = (StatementHandler) interceptorChain.pluginAll(statementHandler);
    return statementHandler;
}

public Executor newExecutor(Transaction transaction, ExecutorType executorType, boolean autoCommit) {
    executorType = executorType == null ? defaultExecutorType : executorType;
    executorType = executorType == null ? ExecutorType.SIMPLE : executorType;
    Executor executor;
    if (ExecutorType.BATCH == executorType) {
      executor = new BatchExecutor(this, transaction);
    } else if (ExecutorType.REUSE == executorType) {
      executor = new ReuseExecutor(this, transaction);
    } else {
      executor = new SimpleExecutor(this, transaction);
    }
    if (cacheEnabled) {
      executor = new CachingExecutor(executor, autoCommit);
    }
    executor = (Executor) interceptorChain.pluginAll(executor);
    return executor;
}

以上4個(gè)方法都是Configuration的方法榕酒。這些方法在MyBatis的一個(gè)操作(新增胚膊,刪除,修改想鹰,查詢)中都會(huì)被執(zhí)行到紊婉,執(zhí)行的先后順序是Executor,ParameterHandler辑舷,ResultSetHandler喻犁,StatementHandler(其中ParameterHandler和ResultSetHandler的創(chuàng)建是在創(chuàng)建StatementHandler[3個(gè)可用的實(shí)現(xiàn)類CallableStatementHandler,PreparedStatementHandler,SimpleStatementHandler]的時(shí)候,其構(gòu)造函數(shù)調(diào)用的[這3個(gè)實(shí)現(xiàn)類的構(gòu)造函數(shù)其實(shí)都調(diào)用了父類BaseStatementHandler的構(gòu)造函數(shù)])惩妇。

這4個(gè)方法實(shí)例化了對(duì)應(yīng)的對(duì)象之后株汉,都會(huì)調(diào)用interceptorChain的pluginAll方法,InterceptorChain的pluginAll剛才已經(jīng)介紹過(guò)了歌殃,就是遍歷所有的攔截器乔妈,然后調(diào)用各個(gè)攔截器的plugin方法。注意:攔截器的plugin方法的返回值會(huì)直接被賦值給原先的對(duì)象

由于可以攔截StatementHandler氓皱,這個(gè)接口主要處理sql語(yǔ)法的構(gòu)建路召,因此比如分頁(yè)的功能勃刨,可以用攔截器實(shí)現(xiàn),只需要在攔截器的plugin方法中處理StatementHandler接口實(shí)現(xiàn)類中的sql即可股淡,可使用反射實(shí)現(xiàn)身隐。

MyBatis還提供了 @Intercepts和 @Signature關(guān)于攔截器的注解。官網(wǎng)的例子就是使用了這2個(gè)注解唯灵,還包括了Plugin類的使用:

@Override
public Object plugin(Object target) {
    return Plugin.wrap(target, this);
}

下面我們就分析這3個(gè) "新組合" 的源碼贾铝,首先先看Plugin類的wrap方法:

public static Object wrap(Object target, Interceptor interceptor) {
    Map<Class<?>, Set<Method>> 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;
}

Plugin類實(shí)現(xiàn)了InvocationHandler接口,很明顯埠帕,我們看到這里返回了一個(gè)JDK自身提供的動(dòng)態(tài)代理類垢揩。我們解剖一下這個(gè)方法調(diào)用的其他方法:

getSignatureMap方法:

private static Map<Class<?>, Set<Method>> 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<Class<?>, Set<Method>> signatureMap = new HashMap<Class<?>, Set<Method>>();
    for (Signature sig : sigs) {
      Set<Method> methods = signatureMap.get(sig.type());
      if (methods == null) {
        methods = new HashSet<Method>();
        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;
}

getSignatureMap方法解釋:首先會(huì)拿到攔截器這個(gè)類的 @Interceptors注解凿可,然后拿到這個(gè)注解的屬性 @Signature注解集合硫惕,然后遍歷這個(gè)集合,遍歷的時(shí)候拿出 @Signature注解的type屬性(Class類型)吞杭,然后根據(jù)這個(gè)type得到帶有method屬性和args屬性的Method呐籽。由于 @Interceptors注解的 @Signature屬性是一個(gè)屬性锋勺,所以最終會(huì)返回一個(gè)以type為key,value為Set<Method>的Map狡蝶。

@Intercepts({@Signature(
  type= Executor.class,
  method = "update",
  args = {MappedStatement.class,Object.class})})

比如這個(gè) @Interceptors注解會(huì)返回一個(gè)key為Executor庶橱,value為集合(這個(gè)集合只有一個(gè)元素,也就是Method實(shí)例牢酵,這個(gè)Method實(shí)例就是Executor接口的update方法悬包,且這個(gè)方法帶有MappedStatement和Object類型的參數(shù))衙猪。這個(gè)Method實(shí)例是根據(jù) @Signature的method和args屬性得到的馍乙。如果args參數(shù)跟type類型的method方法對(duì)應(yīng)不上,那么將會(huì)拋出異常垫释。
getAllInterfaces方法:

private static Class<?>[] getAllInterfaces(Class<?> type, Map<Class<?>, Set<Method>> signatureMap) {
    Set<Class<?>> interfaces = new HashSet<Class<?>>();
    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()]);
}

getAllInterfaces方法解釋:根據(jù)目標(biāo)實(shí)例target(這個(gè)target就是之前所說(shuō)的MyBatis攔截器可以攔截的類丝格,Executor,ParameterHandler,ResultSetHandler,StatementHandler)和它的父類們,返回signatureMap中含有target實(shí)現(xiàn)的接口數(shù)組棵譬。

所以Plugin這個(gè)類的作用就是根據(jù) @Interceptors注解显蝌,得到這個(gè)注解的屬性 @Signature數(shù)組,然后根據(jù)每個(gè) @Signature注解的type订咸,method曼尊,args屬性使用反射找到對(duì)應(yīng)的Method。最終根據(jù)調(diào)用的target對(duì)象實(shí)現(xiàn)的接口決定是否返回一個(gè)代理對(duì)象替代原先的target對(duì)象脏嚷。

比如MyBatis官網(wǎng)的例子骆撇,當(dāng)Configuration調(diào)用newExecutor方法的時(shí)候,由于Executor接口的update(MappedStatement ms, Object parameter)方法被攔截器被截獲父叙。因此最終返回的是一個(gè)代理類Plugin神郊,而不是Executor肴裙。這樣調(diào)用方法的時(shí)候,如果是個(gè)代理類涌乳,那么會(huì)執(zhí)行:

public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
    try {
      Set<Method> 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);
    }
}

沒錯(cuò)蜻懦,如果找到對(duì)應(yīng)的方法被代理之后,那么會(huì)執(zhí)行Interceptor接口的interceptor方法夕晓。

這個(gè)Invocation類如下:

public class Invocation {

  private Object target;
  private Method method;
  private Object[] args;

  public Invocation(Object target, Method method, Object[] args) {
    this.target = target;
    this.method = method;
    this.args = args;
  }

  public Object getTarget() {
    return target;
  }

  public Method getMethod() {
    return method;
  }

  public Object[] getArgs() {
    return args;
  }

  public Object proceed() throws InvocationTargetException, IllegalAccessException {
    return method.invoke(target, args);
  }

}

它的proceed方法也就是調(diào)用原先方法(不走代理)宛乃。

總結(jié)

MyBatis攔截器接口提供的3個(gè)方法中,plugin方法用于某些處理器(Handler)的構(gòu)建過(guò)程蒸辆。interceptor方法用于處理代理類的執(zhí)行烤惊。setProperties方法用于攔截器屬性的設(shè)置。

其實(shí)MyBatis官網(wǎng)提供的使用 @Interceptors和 @Signature注解以及Plugin類這樣處理攔截器的方法吁朦,我們不一定要直接這樣使用柒室。我們也可以拋棄這3個(gè)類,直接在plugin方法內(nèi)部根據(jù)target實(shí)例的類型做相應(yīng)的操作逗宜。

總體來(lái)說(shuō)MyBatis攔截器還是很簡(jiǎn)單的雄右,攔截器本身不需要太多的知識(shí)點(diǎn),但是學(xué)習(xí)攔截器需要對(duì)MyBatis中的各個(gè)接口很熟悉纺讲,因?yàn)閿r截器涉及到了各個(gè)接口的知識(shí)點(diǎn)擂仍。

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市熬甚,隨后出現(xiàn)的幾起案子逢渔,更是在濱河造成了極大的恐慌,老刑警劉巖乡括,帶你破解...
    沈念sama閱讀 206,968評(píng)論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件肃廓,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡诲泌,警方通過(guò)查閱死者的電腦和手機(jī)盲赊,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)敷扫,“玉大人哀蘑,你說(shuō)我怎么就攤上這事】冢” “怎么了绘迁?”我有些...
    開封第一講書人閱讀 153,220評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)卒密。 經(jīng)常有香客問(wèn)我缀台,道長(zhǎng),這世上最難降的妖魔是什么栅受? 我笑而不...
    開封第一講書人閱讀 55,416評(píng)論 1 279
  • 正文 為了忘掉前任将硝,我火速辦了婚禮恭朗,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘依疼。我一直安慰自己痰腮,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,425評(píng)論 5 374
  • 文/花漫 我一把揭開白布律罢。 她就那樣靜靜地躺著膀值,像睡著了一般。 火紅的嫁衣襯著肌膚如雪误辑。 梳的紋絲不亂的頭發(fā)上沧踏,一...
    開封第一講書人閱讀 49,144評(píng)論 1 285
  • 那天,我揣著相機(jī)與錄音巾钉,去河邊找鬼翘狱。 笑死,一個(gè)胖子當(dāng)著我的面吹牛砰苍,可吹牛的內(nèi)容都是我干的潦匈。 我是一名探鬼主播,決...
    沈念sama閱讀 38,432評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼赚导,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼茬缩!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起吼旧,我...
    開封第一講書人閱讀 37,088評(píng)論 0 261
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤凰锡,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后圈暗,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體掂为,經(jīng)...
    沈念sama閱讀 43,586評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,028評(píng)論 2 325
  • 正文 我和宋清朗相戀三年厂置,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了菩掏。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片魂角。...
    茶點(diǎn)故事閱讀 38,137評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡昵济,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出野揪,到底是詐尸還是另有隱情访忿,我是刑警寧澤,帶...
    沈念sama閱讀 33,783評(píng)論 4 324
  • 正文 年R本政府宣布斯稳,位于F島的核電站海铆,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏挣惰。R本人自食惡果不足惜卧斟,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,343評(píng)論 3 307
  • 文/蒙蒙 一殴边、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧珍语,春花似錦锤岸、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至募逞,卻和暖如春蛋铆,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背放接。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評(píng)論 1 262
  • 我被黑心中介騙來(lái)泰國(guó)打工刺啦, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人纠脾。 一個(gè)月前我還...
    沈念sama閱讀 45,595評(píng)論 2 355
  • 正文 我出身青樓洪燥,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親乳乌。 傳聞我的和親對(duì)象是個(gè)殘疾皇子捧韵,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,901評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容

  • 原文作者:Format原文地址:原文鏈接摘抄申明:我們不占有不侵權(quán),我們只是好文的搬運(yùn)工汉操!轉(zhuǎn)發(fā)請(qǐng)帶上原文申明再来。 M...
    Hey_Shaw閱讀 874評(píng)論 0 15
  • MyBatis提供了一種插件(plugin)的功能,雖然叫做插件磷瘤,但其實(shí)這是攔截器功能芒篷。那么攔截器攔截MyBati...
    七寸知架構(gòu)閱讀 3,252評(píng)論 3 54
  • 《 一生所愛》從前現(xiàn)在過(guò)去了再不來(lái)紅紅落葉長(zhǎng)埋塵土內(nèi)開始終結(jié)總是沒變改天邊的你飄泊白云外苦海翻起愛恨在世間難逃避命...
    莫那一魯?shù)?/span>閱讀 2,298評(píng)論 8 8
  • 插件的定義和作用 首先引用MyBatis文檔對(duì)插件(plugins)的定義: MyBatis 允許你在已映射語(yǔ)句執(zhí)...
    Java架構(gòu)_師閱讀 560評(píng)論 0 0
  • 一個(gè)人的時(shí)候,請(qǐng)吃好喝好 一個(gè)人的時(shí)候采缚,請(qǐng)帶齊所有用品 一個(gè)人的時(shí)候针炉,請(qǐng)看書運(yùn)動(dòng) 一個(gè)人的時(shí)候,請(qǐng)?zhí)ь^挺胸 一個(gè)人...
    口天豐色閱讀 110評(píng)論 0 1