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

溫馨提示×

溫馨提示×

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

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

如何在MyBatis中自定義Plugin插件

發布時間:2021-06-08 16:34:30 來源:億速云 閱讀:150 作者:Leah 欄目:編程語言

本篇文章給大家分享的是有關如何在MyBatis中自定義Plugin插件,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

MyBatis 允許你在已映射語句執行過程中的某一點進行攔截調用。

什么意思呢?就是你可以對執行某些方法之前進行攔截,做自己的一些操作,如:

1.記錄所有執行的SQL(通過對 MyBatis org.apache.ibatis.executor.statement.StatementHandler 中的prepare 方法進行攔截)

2.修改SQL(org.apache.ibatis.executor.Executor中query方法進行攔截)等。

但攔截的方法調用有限制,MyBatis 允許使用插件來攔截的方法調用包括:

  • Executor (update, query, flushStatements, commit, rollback, getTransaction, close, isClosed)

  • ParameterHandler (getParameterObject, setParameters)

  • ResultSetHandler (handleResultSets, handleOutputParameters)

  • StatementHandler (prepare, parameterize, batch, update, query)

實現

使用插件是非常簡單的,只需實現 Interceptor 接口,并指定想要攔截的方法簽名即可。

// ExamplePlugin.java
@Intercepts({@Signature(
 type= Executor.class,
 method = "update",
 args = {MappedStatement.class,Object.class},
 @Signature(
  type = Executor.class, //必須為上面所支持的類
  method = "query", //類中支持的方法,可從源碼中查看支持哪些方法
  args = {MappedStatement.class, Object.class , RowBounds.class, ResultHandler.class})}) //對應的參數Class,也可從源碼中查看
public class ExamplePlugin implements Interceptor {
 public Object intercept(Invocation invocation) throws Throwable {
 Object[] queryArgs = invocation.getArgs();
  MappedStatement mappedStatement = (MappedStatement) queryArgs[0];
  Object parameter = queryArgs[1];
  BoundSql boundSql = mappedStatement.getBoundSql(parameter);
  String sql = boundSql.getSql();//獲取到SQL ,可以進行調整
  String name = invocation.getMethod().getName();
  queryArgs[1] = 2; //可以修改參數內容
  System.err.println("攔截的方法名是:" + name);
  return invocation.proceed();
 }
 public Object plugin(Object target) {
  return Plugin.wrap(target, this);
 }
 public void setProperties(Properties properties) {
 }
}

在配置文件中注冊插件

<!-- mybatis-config.xml -->
<plugins>
 <plugin interceptor="org.mybatis.example.ExamplePlugin">
  <property name="someProperty" value="100"/>
 </plugin>
</plugins>

以上就是如何在MyBatis中自定義Plugin插件,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

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

AI

徐州市| 拉萨市| 化德县| 砚山县| 沛县| 梧州市| 礼泉县| 安顺市| 宜丰县| 温州市| 勐海县| 江安县| 琼结县| 宝坻区| 沂源县| 宣威市| 留坝县| 连山| 靖宇县| 曲麻莱县| 富平县| 宝鸡市| 托里县| 东城区| 博罗县| 武平县| 浙江省| 成安县| 香港| 台州市| 中阳县| 农安县| 德令哈市| 都江堰市| 陆河县| 大安市| 互助| 榆社县| 惠东县| 潞城市| 合江县|