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

溫馨提示×

溫馨提示×

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

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

Mybatis中ParameterHandler的作用是什么

發布時間:2021-06-18 17:54:34 來源:億速云 閱讀:260 作者:Leah 欄目:大數據

Mybatis中ParameterHandler的作用是什么,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

    List-1

public interface ParameterHandler {

  Object getParameterObject();

  void setParameters(PreparedStatement ps)
      throws SQLException;

}

    它的默認實現只有一個DefaultParameterHandler,

    List-2

  @Override
  public void setParameters(PreparedStatement ps) {
    ErrorContext.instance().activity("setting parameters").object(mappedStatement.getParameterMap().getId());
    //獲取Sql語句的參數列表
    List<ParameterMapping> parameterMappings = boundSql.getParameterMappings();
    if (parameterMappings != null) {
      //遍歷參數
      for (int i = 0; i < parameterMappings.size(); i++) {
        ParameterMapping parameterMapping = parameterMappings.get(i);
        //只處理輸入參數
        if (parameterMapping.getMode() != ParameterMode.OUT) {
          Object value;
          String propertyName = parameterMapping.getProperty();
          //獲取參數值
          if (boundSql.hasAdditionalParameter(propertyName)) { // issue #448 ask first for additional params
            value = boundSql.getAdditionalParameter(propertyName);
          } else if (parameterObject == null) {
            value = null;
          } else if (typeHandlerRegistry.hasTypeHandler(parameterObject.getClass())) {
            value = parameterObject;
          } else {
            //MetaObject是Mybatis用于處理對象屬性的輔助類
            MetaObject metaObject = configuration.newMetaObject(parameterObject);
            //如果參數不是Map,也不是List,則MetaObject是BeanWrapper
            //metaObject.getValue內部,通過JDK的反射獲取參數的get方法,用反射的方式獲取值,method.invoke(object);
            value = metaObject.getValue(propertyName);
          }
          TypeHandler typeHandler = parameterMapping.getTypeHandler();
          JdbcType jdbcType = parameterMapping.getJdbcType();
          if (value == null && jdbcType == null) {
            jdbcType = configuration.getJdbcTypeForNull();
          }
          try {
            //內部實現上,會用PreparedStatement的方法來進行參數設置
            typeHandler.setParameter(ps, i + 1, value, jdbcType);
          } catch (TypeException e) {
            throw new TypeException("Could not set parameters for mapping: " + parameterMapping + ". Cause: " + e, e);
          } catch (SQLException e) {
            throw new TypeException("Could not set parameters for mapping: " + parameterMapping + ". Cause: " + e, e);
          }
        }
      }
    }
  }

關于Mybatis中ParameterHandler的作用是什么問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

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

AI

西贡区| 远安县| 邓州市| 石首市| 奇台县| 卓资县| 甘孜| 苍山县| 伊宁县| 揭东县| 夏邑县| 苏尼特左旗| 壶关县| 临泽县| 正阳县| 神池县| 咸宁市| 昭通市| 邯郸县| 平邑县| 黔西县| 伽师县| 新余市| 巨野县| 米林县| 高陵县| 门源| 阜平县| 卢湾区| 延津县| 即墨市| 偃师市| 中阳县| 搜索| 泾阳县| 平塘县| 陆河县| 衡阳市| 东乌珠穆沁旗| 舒兰市| 定西市|