您好,登錄后才能下訂單哦!
本篇內容主要講解“mybatis之BaseTypeHandler怎么使用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“mybatis之BaseTypeHandler怎么使用”吧!
BaseTypeHandler 是個抽象類,需要子類去實現其定義的 4 個抽象方法,而它本身實現了 typeHandler 接口的 4 個方法。
可以對數據保存與查詢時做出相應處理,類似操作數據庫之間的一個攔截器
舉栗子:把集合類型當string存起來,讀取的時候映射為list集合
首先自定義handler 繼承BaseTypeHandler重寫他里邊的四個方法
public abstract void setNonNullParameter(PreparedStatement var1, int var2, T var3, JdbcType var4) throws SQLException; public abstract T getNullableResult(ResultSet var1, String var2) throws SQLException; public abstract T getNullableResult(ResultSet var1, int var2) throws SQLException; public abstract T getNullableResult(CallableStatement var1, int var2) throws SQLException;
代碼如下
public class ListToStringHandler extends BaseTypeHandler<List> { @Override public void setNonNullParameter(PreparedStatement preparedStatement, int i, List list, JdbcType jdbcType) throws SQLException { preparedStatement.setString(i, JSON.toJSONString(list)); } @Override public List getNullableResult(ResultSet resultSet, String s) throws SQLException { return JSONArray.parseArray(resultSet.getString(s)); } @Override public List getNullableResult(ResultSet resultSet, int i) throws SQLException { return JSONArray.parseArray(resultSet.getString(i)); } @Override public List getNullableResult(CallableStatement callableStatement, int i) throws SQLException { return JSONArray.parseArray(callableStatement.getString(i)); } }
mybaits-plus 方式
bean上添加注解
@TableName(autoResultMap = true)
映射字段上添加如下注解,指定自定義的handler
@TableField(jdbcType = JdbcType.VARCHAR, typeHandler = ListToStringHandler.class)
mybaits的方式
<resultMap> 標簽內 映射字段的handler 指定自定義的handler即可,保存的時候也要指定。
測試
這只是其一種簡單的用法,其他的比如加密解密也適用。
在mysql的使用過程中,我們經常會將一些json串存入mysql當中,如下json串
{ "params":[ { "name":"zl", "age":18, "createTime":"2020-06-19 09:28:38", "modifyTime":"2020-06-19 09:29:07" } ], "paramsTypes":[ "com.zl.platform.student" ] }
對于這種數據在mybatis的存取過程需要一些特殊的處理,我們可以通過繼承mybatis的org.apache.ibatis.type.BaseTypeHandler來實現。
首先我們需要完成一個工具類
import com.alibaba.fastjson.JSON; import org.apache.ibatis.type.BaseTypeHandler; import org.apache.ibatis.type.JdbcType; import java.sql.CallableStatement; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; /** * @Author: zl */ public class JsonTypeHandler<T> extends BaseTypeHandler<T> { private Class<T> type; public JsonTypeHandler(Class<T> type) { if (type == null) { throw new IllegalArgumentException("Type argument cannot be null"); } this.type = type; } @Override public void setNonNullParameter(PreparedStatement ps, int i, Object parameter, JdbcType jdbcType) throws SQLException { ps.setString(i, JSON.toJSONString(parameter)); } @Override public T getNullableResult(ResultSet rs, String columnName) throws SQLException { return JSON.parseObject(rs.getString(columnName), type); } @Override public T getNullableResult(ResultSet rs, int columnIndex) throws SQLException { return JSON.parseObject(rs.getString(columnIndex), type); } @Override public T getNullableResult(CallableStatement cs, int columnIndex) throws SQLException { return JSON.parseObject(cs.getString(columnIndex), type); } }
然后在mybatis中對需要使用json格式的字段引用這個方法
<resultMap id="BaseResultMap" type="com.zl.platform.entity.demo.DubboControllerInfo"> <id column="id" property="id" /> <result column="department" property="department" /> <result column="case_name" property="caseName"/> <result column="author" property="author" /> <result column="service_name" property="serviceName" /> <result column="method_name" property="methodName" /> <result column="dubbo_params" property="dubboParams" typeHandler="com.zl.platform.utils.JsonTypeHandler"/> <result column="create_time" property="createTime" /> <result column="update_time" property="updateTime" /> </resultMap> <insert id="insertDubboInfo" parameterType="com.zl.platform.entity.demo.DubboControllerInfo"> insert into dubbo_controller_info (department, author, service_name, method_name, dubbo_params,create_time, update_time) VALUES (#{department},#{author},#{serviceName},#{methodName},#{dubboParams,typeHandler=com.zl.platform.utils.JsonTypeHandler}, #{createTime},#{updateTime}) </insert> <select id="selectAll" resultMap="BaseResultMap"> select * from dubbo_controller_info </select>
到此,相信大家對“mybatis之BaseTypeHandler怎么使用”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。