91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

MyBatis攔截器:給參數對象屬性賦值

發布時間:2020-07-14 02:44:48 來源:網絡 閱讀:1097 作者:鄒君安 欄目:網絡安全

MyBatis攔截器:給參數對象屬性賦值

  1 package com.development;  2   3 import java.lang.reflect.InvocationTargetException;  4 import java.util.Date;  5 import java.util.Map;  6 import java.util.Properties;  7   8 import org.apache.commons.beanutils.BeanUtils;  9 import org.apache.ibatis.executor.Executor; 10 import org.apache.ibatis.mapping.MappedStatement; 11 import org.apache.ibatis.mapping.SqlCommandType; 12 import org.apache.ibatis.plugin.Interceptor; 13 import org.apache.ibatis.plugin.Intercepts; 14 import org.apache.ibatis.plugin.Invocation; 15 import org.apache.ibatis.plugin.Plugin; 16 import org.apache.ibatis.plugin.Signature; 17  18 /** 19  * 攔截器作用:給各實體對象在增加、修改時,自動添加操作屬性信息。 20  */ 21 @Intercepts({@Signature(type = Executor.class, method = "update", args = {MappedStatement.class, Object.class }) }) 22 public class OpeInfoInterceptor implements Interceptor 23 { 24  25     public Object intercept(Invocation invocation) throws Throwable 26     { 27         Object[] args = invocation.getArgs(); 28  29         System.out.println("-----------參數攔截---------------------------------------------------"); 30         System.out.println("02 當前線程ID:"+Thread.currentThread().getId()); 31         //遍歷處理所有參數,update方法有兩個參數,參見Executor類中的update()方法。 32         for(int i=0;i<args.length;i++) 33         { 34             Object arg=args[i]; 35             String className=arg.getClass().getName(); 36             System.out.println(i + " 參數類型:"+className); 37              38             //第一個參數處理。根據它判斷是否給“操作屬性”賦值。 39             if(arg instanceof MappedStatement) 40             {//如果是第一個參數 MappedStatement 41                 MappedStatement ms = (MappedStatement)arg; 42                 SqlCommandType sqlCommandType = ms.getSqlCommandType(); 43                 System.out.println("操作類型:"+sqlCommandType); 44                 if(sqlCommandType == SqlCommandType.INSERT || sqlCommandType==SqlCommandType.UPDATE) 45                 {//如果是“增加”或“更新”操作,則繼續進行默認操作信息賦值。否則,則退出 46                     continue; 47                 } 48                 else 49                 { 50                     break; 51                 } 52             } 53              54             //第二個參數處理。(只有第二個程序才能跑到這) 55             if (arg instanceof Map) 
 56             {//如果是map,有兩種情況:(1)使用@Param多參數傳入,由Mybatis包裝成map。(2)原始傳入Map 57                 System.out.println("這是一個包裝過的類型!"); 58                 Map map=(Map)arg; 59                 for (Object obj : map.values()) 
 60                 {  
 61                     setProperty(obj); 62                 } 
 63             } 64             else 65             {//原始參數傳入 66                 setProperty(arg); 67             } 68              69         } 70  71         return invocation.proceed(); 72  73     } 74      75     /** 76      * 為對象的操作屬性賦值 77      * @param obj 78      */ 79     private void setProperty(Object obj) 80     { 81         try 82         { 83             //TODO: 根據需要,將相關屬性賦上默認值 84             BeanUtils.setProperty(obj, "createrUsername", "張三"); 85             BeanUtils.setProperty(obj, "createDT", new Date()); 86         } 87         catch (IllegalAccessException e) 88         { 89             e.printStackTrace(); 90         } 91         catch (InvocationTargetException e) 92         { 93             e.printStackTrace(); 94         } 95     } 96  97     public Object plugin(Object target) 98     { 99         return Plugin.wrap(target, this);100     }101 102     public void setProperties(Properties properties)103     {104 105     }106 107 }

MyBatis攔截器:給參數對象屬性賦值


向AI問一下細節

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

AI

正定县| 天门市| 托克逊县| 彭山县| 南和县| 盐城市| 纳雍县| 水城县| 永寿县| 德江县| 衡阳县| 滁州市| 黑山县| 晋州市| 恩平市| 张家口市| 丰都县| 泗洪县| 杂多县| 靖西县| 鄂伦春自治旗| 洛南县| 潞城市| 安顺市| 隆德县| 洛阳市| 中西区| 阳西县| 泾阳县| 龙泉市| 澄城县| 蒲城县| 永德县| 崇州市| 永定县| 嘉兴市| 长治市| 玉门市| 五华县| 淮安市| 吉木萨尔县|