先google了一下
原因有以下几点
1.exception setting property value with CGLIB (set hibernate.cglib.use_reflection_optimizer=false for more info) setter of
又见这样的错误,原因是对于一些数字项由于从数据库里面取出的值为null
2.映射为bolean的字段,在建表时,如果没有设定字段的default值,会导致exception setting property value with CGLIB setter错误.设置好默认值问题就可以解决了
3.映射为String的字段,在建表时,如果字段类型错误,会导致exception setting property value with CGLIB setter错误.设置好默认值问题就可以解决了
符合第三点,修改数据库对应的字段类型为varchar,问题解决