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

溫馨提示×

溫馨提示×

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

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

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

博罗县| 永和县| 建昌县| 三都| 会同县| 萍乡市| 高唐县| 滨海县| 浑源县| 杂多县| 武汉市| 黎城县| 博爱县| 礼泉县| 广宁县| 宣化县| 阆中市| 北海市| 克拉玛依市| 那曲县| 珲春市| 盐边县| 白银市| 宁海县| 乾安县| 桐乡市| 台安县| 津南区| 正蓝旗| 石渠县| 越西县| 开化县| 门头沟区| 彝良县| 和平县| 扎兰屯市| 饶阳县| 黄石市| 贵南县| 濮阳县| 宜宾市|