您好,登錄后才能下訂單哦!
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中獲取值,可以通過下標或列名稱獲取,此外存儲過程的處理方式不同。
圖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); } }
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。