cloudscode / ToDo

0 stars 0 forks source link

HIBERANTE TINYINT(1) 取值问题 #7

Closed cloudscode closed 7 years ago

cloudscode commented 7 years ago

HIBERANTE TINYINT(1) 取值问题

cloudscode commented 7 years ago

在使用Hiberante 获取Mysql中tinyint(1)类型数据时, 默认取值为 boolean,当tinyint中存储值为2时,取出的值为true。这样在业务上处理有问题。可以通过MySql数据链接中的属性设置,将值不转成boolean。

数据链接中添加tinyInt1isBit=false属性,即可解决。

详见:http://dev.mysql.com/doc/connector-j/5.1/en/connector-j-reference-configuration-properties.html

PS: tinyint(1)的取值范围并不是0和1 ,而是显示长度。 tinyint(1)的取值范围是-128到127, 如果我的值是58,但jfinal返回true 就不是想取到的值。