码迷,mamicode.com
首页 > 数据库 > 详细

org.hibernate.PropertyAccessException: Null value was assigned to a property of primitive type sette

时间:2014-09-26 20:35:18      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:hibernate

在使用原生的sql查询pojo对象时候,数据库里realAmount字段值为NULL,进行对象持久化关联时,企图给对象的这个属性赋值为空,而对象实例的这个属性不能为空值,所以出现错误。【realAmount是int型,不能为空】

 

 解决方法:将该字段在类中的类型定义为Integer。

Integer   code和int   code的区别:
Integer是对象        code   =   null;   对象可以为空.   
int   是普通类型        不可能   =   null.       
根据在数据库里,code是可以空的,故应该映射成Integer类型的。 而且hibernate中要用包装类java.long.Integer,不要用基本类型Integer.

org.hibernate.PropertyAccessException: Null value was assigned to a property of primitive type sette

标签:hibernate

原文地址:http://blog.csdn.net/liwf_/article/details/39581681

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!