美文网首页
mybatis取tinyint(1)字段结果被取成boolean

mybatis取tinyint(1)字段结果被取成boolean

作者: 春苟哈皮 | 来源:发表于2019-05-31 17:24 被阅读0次

使用Mybatis查询tinyint(1)字段数据,返回值为Map类型,那么tinyint(1)的数据默认会转化为boolean类型数据.
解决方案:

  1. 使用ifnull(column, 0)处理该字段,个人测试过可以;
  2. 在jdbcUrl添加参数:tinyInt1isBit=false(默认为true)
  3. 避免使用长度为1的tinyint类型字段存储数字格式的数据;

相关文章

网友评论

      本文标题:mybatis取tinyint(1)字段结果被取成boolean

      本文链接:https://www.haomeiwen.com/subject/nwpgtctx.html