gbase整合mybatis出现: Cause: java.sql.SQLException: Can't convert to: binary stream
Posted 炫舞风中
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gbase整合mybatis出现: Cause: java.sql.SQLException: Can't convert to: binary stream相关的知识,希望对你有一定的参考价值。
这主要是数据库中字段类型为LVARCHAR转换出现的问题,可以在mybatis-config.xml中添加如下配置:
<typeHandlers> <typeHandler handler="org.apache.ibatis.type.StringTypeHandler" jdbcType="LONGVARCHAR" javaType="string"/> </typeHandlers>
以上是关于gbase整合mybatis出现: Cause: java.sql.SQLException: Can't convert to: binary stream的主要内容,如果未能解决你的问题,请参考以下文章
搭建Mybatis 出现 Error querying database. Cause: java.lang.IllegalArgumentException: Mapped Statement
mybatis中出现Cause: org.apache.ibatis.builder.BuilderException的解决思路