亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在mybatis中實現擴展

發布時間:2021-05-27 17:45:16 來源:億速云 閱讀:249 作者:Leah 欄目:編程語言

這篇文章將為大家詳細講解有關怎么在mybatis中實現擴展,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

先看下攔截器的核心接口

public interface Interceptor {
 
 Object intercept(Invocation invocation) throws Throwable;
 
 Object plugin(Object target);
 
 void setProperties(Properties properties);
 
}

其中intercept方法是核心方法,攔截器的實現,plugin方法是用于配置哪些對哪些執行器進行攔截

繼續看源碼,可以看到mybatis的攔截是使用了jdk的動態代理實現的,本質上是一種代理機制

public class Plugin implements InvocationHandler {
 
 private final Object target;
 private final Interceptor interceptor;
 private final Map<Class<?>, Set<Method>> signatureMap;
 
 private Plugin(Object target, Interceptor interceptor, Map<Class<?>, Set<Method>> signatureMap) {
 this.target = target;
 this.interceptor = interceptor;
 this.signatureMap = signatureMap;
 }
 
 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;
 }
 
 @Override
 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);
 }
 }
 
 ......
}

mybatis的這個Plugin就是代理類,這個代理類是在org.apache.ibatis.plugin.Interceptor#plugin方法中初始化的(調用org.apache.ibatis.plugin.Plugin#wrap),一個Plugin包含一個Intercepter,以及該Intercepter相關的注解配置信息,當對攔截對象的對應方法進行執行的時候,都會根據這些注解配置來判斷是否需要執行該代理攔截(org.apache.ibatis.plugin.Plugin#invoke

再看下plugin是如何被加載的:

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);
 }
 
}

org.apache.ibatis.plugin.Interceptor#plugin是在org.apache.ibatis.plugin.InterceptorChain#pluginAll方法中調用的,我們可以看到,如果一個應用中注冊了多個攔截器,那么實際上是會進行一個for循環的加載,由于上面說到了,加載一次,本質上是對mybatis的執行期進行一次代理包裝,那么加載多次的話,就會代理包裝多次,實際上就是一種多重代理了,這樣就保證了每次調用都會按照代理順序進行調用和返回的處理

可以看到,在做這些mybatis執行器初始化的時候,都會進行攔截器鏈的加載

怎么在mybatis中實現擴展

關于怎么在mybatis中實現擴展就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

蓝田县| 五台县| 广宁县| 光泽县| 铜川市| 云林县| 集贤县| 乐平市| 应城市| 赤壁市| 原阳县| 盐源县| 化隆| 永清县| 莱芜市| 平原县| 明光市| 鸡西市| 扎囊县| 贺兰县| 漳州市| 谢通门县| 开江县| 孟津县| 嘉义市| 梅州市| 吉林市| 格尔木市| 分宜县| 巴塘县| 石楼县| 枣阳市| 合川市| 芷江| 乡宁县| 钟祥市| 常宁市| 玛多县| 股票| 延长县| 云龙县|