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

溫馨提示×

溫馨提示×

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

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

Mybatis中TypeHandler的作用是什么

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

Mybatis中TypeHandler的作用是什么,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

    mybatis-3.4.6.release.

    TypeHandler在mybatis中是個重要的組件,對statement設置參數還是從Resultset中取值,都會用到它。

    List-1

public interface TypeHandler<T> {

  void setParameter(PreparedStatement ps, int i, T parameter, JdbcType jdbcType) throws SQLException;

  T getResult(ResultSet rs, String columnName) throws SQLException;

  T getResult(ResultSet rs, int columnIndex) throws SQLException;

  T getResult(CallableStatement cs, int columnIndex) throws SQLException;

}

    如List-1中所示,setParameter方法在ParameterHandler中使用到,其它三個getResult方法在ResultSetHandler中使用到,為什么會有三個getResult方法是因為從ResultSet中獲取值,可以通過下標或列名稱獲取,此外存儲過程的處理方式不同。

             Mybatis中TypeHandler的作用是什么

                                                              圖1

    BaseTypeHandler的類繼承圖如圖1所示,先來看下TypeReferernce,其作用主要是獲取類上的泛型,在TypeReferernce的構造方法中實現的,如下List-2所示,getRawType的結果是BigDecimal.

    List-2

public class BigDecimalTypeHandler extends BaseTypeHandler<BigDecimal>

    BaseTypeHandler中使用了模板模式,具體實現由子類來實現,如下List-3:

    List-3 

public abstract class BaseTypeHandler<T> extends TypeReference<T> implements TypeHandler<T> {

  @Override
  public void setParameter(PreparedStatement ps, int i, T parameter, JdbcType jdbcType) throws SQLException {
      ...
      如果parameter是null,則直接調用PreparedStatement的setNull方法
      ps.setNull(i, jdbcType.TYPE_CODE);
      ...
      setNonNullParameter(ps, i, parameter, jdbcType);
      ...
  }

  @Override
  public T getResult(ResultSet rs, String columnName) throws SQLException {
      ...
      result = getNullableResult(rs, columnName);
      ...
  }

  @Override
  public T getResult(ResultSet rs, int columnIndex) throws SQLException {
      ...
      result = getNullableResult(rs, columnIndex);
      ...
  }

  @Override
  public T getResult(CallableStatement cs, int columnIndex) throws SQLException {
      ...
      result = getNullableResult(cs, columnIndex);
      ...
  }

  public abstract void setNonNullParameter(PreparedStatement ps, int i, T parameter, JdbcType jdbcType) throws SQLException;

  public abstract T getNullableResult(ResultSet rs, String columnName) throws SQLException;

  public abstract T getNullableResult(ResultSet rs, int columnIndex) throws SQLException;

  public abstract T getNullableResult(CallableStatement cs, int columnIndex) throws SQLException;

}

    來看個例子BooleanTypeHandler:

    List-4

public class BooleanTypeHandler extends BaseTypeHandler<Boolean> {

  @Override
  public void setNonNullParameter(PreparedStatement ps, int i, Boolean parameter, JdbcType jdbcType)
      throws SQLException {
    ps.setBoolean(i, parameter);
  }

  @Override
  public Boolean getNullableResult(ResultSet rs, String columnName)
      throws SQLException {
    return rs.getBoolean(columnName);
  }

  @Override
  public Boolean getNullableResult(ResultSet rs, int columnIndex)
      throws SQLException {
    return rs.getBoolean(columnIndex);
  }

  @Override
  public Boolean getNullableResult(CallableStatement cs, int columnIndex)
      throws SQLException {
    return cs.getBoolean(columnIndex);
  }
}

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

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

AI

文成县| 韩城市| 灌南县| 东阿县| 深水埗区| 滨海县| 平利县| 蒲江县| 屏山县| 历史| 伊宁县| 林周县| 巴塘县| 丹江口市| 无棣县| 吉林市| 黄平县| 乐安县| 平南县| 石泉县| 双辽市| 泰兴市| 海盐县| 绥棱县| 青田县| 阿巴嘎旗| 襄城县| 黄石市| 方山县| 青阳县| 长子县| 定州市| 桃园县| 平利县| 星子县| 平阴县| 新沂市| 卓尼县| 衡山县| 洞头县| 江北区|