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

溫馨提示×

溫馨提示×

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

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

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

涞源县| 台湾省| 科技| 绥芬河市| 武宁县| 交口县| 察哈| 林州市| 清苑县| 都江堰市| 辽源市| 盐源县| 中西区| 开封市| 永丰县| 临潭县| 喀喇| 临夏县| 崇文区| 河曲县| 文水县| 海伦市| 乡宁县| 辽阳市| 青河县| 遂溪县| 恩施市| 寿阳县| 深水埗区| 涪陵区| 乳山市| 垣曲县| 建平县| 昆明市| 东海县| 洛南县| 庆云县| 曲靖市| 饶阳县| 黄石市| 澄江县|