参考地址:http://mybatis-user.963551.n3.nabble.com/Map-SQL-Type-LVARCHAR-x-to-JDBC-Type-VARCHAR-globally-td4029691.html
这主要是数据库中字段类型为LVARCHAR转换出现的问题,可以在mybatis-config.xml中添加如下配置:
<typeHandlers> <typeHandler handler="org.apache.ibatis.type.StringTypeHandler" jdbcType="LONGVARCHAR" javaType="string"/> </typeHandlers>