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

Optional int parameter 'time' is present but cannot be translated into a null value due to being decla

时间:2017-12-03 19:50:34      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:res   efault   redis   null   present   default   接收   基本   option   

今天在操作redis的时候报了这个错:Optional int parameter ‘time‘ is present but cannot be translated into a null value due to being decla

这句话意思:参数time存在,但是无法将其转为为null

查看了下原因,time这个字段是用来记录设置多久时间过期的,

我在service层设置的是Long 类型, 我在Controller 层设置的是long类型,前后设置的不一样,猜测前后需要设置一致,

于是我就将Contoller 设置为了Long类型,于是就通过了。

但是我在接受前台传送过来的参数时,使用Long接收, 在Service层使用long 同样没有报错。

之后我更改为前后都使用long,然后就报错了。

想了下springmvc在接受参数的时候,如果不存在,那么会将这个值设置为null,如果你用基本数据类型,

那么怎么给其赋值为空呢?

总结:大家以后在springmvc接受参数的时候,尽量不要使用基本数据类型,当然你一定要使用的话,可以把defaultValue加上,这样就不会报这个错误了。

注意:就算你加上required=false, 一样也是不行的。

 

Optional int parameter 'time' is present but cannot be translated into a null value due to being decla

标签:res   efault   redis   null   present   default   接收   基本   option   

原文地址:http://www.cnblogs.com/zfding/p/7966880.html

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