码迷,mamicode.com
首页 > 其他好文 > 详细

Null value was assigned to a property of primitive type setter of"原因及解决方法

时间:2014-11-10 19:27:04      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   使用   java   sp   strong   文件   

在action请求数据的过程中报出"Null value was assigned to a property of primitive type setter of"错误,搜索之后发现是因为数据库里相应的字段为NULL。

例如:

<!--Hibernate映射文件中的字段--> 
<property name="printTime" type="long"><column name="print_time"/></property> 

 

其中的类型为hibernate类型,在生成的类中,printTime字段为long类型(int也是如此),为基本类型,不能为NULL.
解决方法:
    第一种:数据库字段不设置为空;
    第二种:手动修改映射文件,printTime使用Java类型Long,即type="java.lang.Long"(Integer),Book类中的字段也要改为Long。同理,int为Integer.
    第三种:在反向工程时使用Java类型,而不是hibernate类型。

Null value was assigned to a property of primitive type setter of"原因及解决方法

标签:style   blog   io   color   使用   java   sp   strong   文件   

原文地址:http://www.cnblogs.com/toSeeMyDream/p/4087694.html

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