中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

阳信县| 宽城| 武义县| 安顺市| 万盛区| 冕宁县| 从化市| 怀化市| 长沙县| 涿州市| 西畴县| 扎兰屯市| 三江| 宁德市| 太原市| 云龙县| 信阳市| 铜鼓县| 广元市| 平罗县| 古交市| 阿克| 分宜县| 荆门市| 璧山县| 上思县| 班玛县| 宽城| 长寿区| 连江县| 逊克县| 巴彦县| 凌海市| 科尔| 益阳市| 江都市| 都兰县| 郓城县| 台北县| 旌德县| 申扎县|