本文主要是介绍mybatis获取oracle存储的blob对象时显示“getBLOB not implemented for class oracle.jdbc.driver.T4CRowidAccessor”,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在dbMapper.xml中的resultMap中添加typeHandler。
<resultMap id="Record_resultMap" type="com.example.statepower.bean.Record"><result column="rimg" property="rimg" javaType="java.lang.Byte" jdbcType="BLOB" typeHandler="org.apache.ibatis.type.BlobTypeHandler"/></resultMap>
这篇关于mybatis获取oracle存储的blob对象时显示“getBLOB not implemented for class oracle.jdbc.driver.T4CRowidAccessor”的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!