mybatis 无效的列类型

oracle在保存用户时,有两个属性分别是String和Date,默认为null,存储时会报如下错误:
 
无效的列类型:  1111
  Error  setting  null  parameter.  Most  JDBC  drivers  require  that  the  JdbcType  must  be  specified  for  all  nullable  parameters.  Cause:  java.sql.SQLException:  无效的列类型:  1111
  ###  Error  updating  database.  Cause:  org.apache.ibatis.type.TypeException:  Error  setting  null  parameter.


解决方案:
在oracle中的null为不确定的意思,存储null时,mybatis解析不到oracle字段类型
解决方法:在插入语句中,加入jdbcType,如下:
#{loginIp,jdbcType=VARCHAR}
#{name,jdbcType=VARCHAR}

你可能感兴趣的:(mybatis 无效的列类型)