这是最近我们项目组遇到的问题。项目组的同事和往常一样写代码,但是在测试的时候,发现传递的参数怎么也获取不到值。于是找我咨询,然后我根据后台的异常信息和对应的代码指出了 @RequestParam 的用法问题。
首先我们根据错误提示信息:“org.springframework.web.bind.MissingServletRequestParameterException: Required xxx parameter 'xxx' is not present”。MissingServletRequestParameterException 异常就是一个参数绑定异常。也就是说,你在 Controller 中写的方法中用的 @RequestParam 指定的参数没有获取到。
@RequestParam 主要是用来绑定一个基本数据类型或 String 数据类型的参数。如果是一个对象,则不能使用 @RequestParam 来指定。因为对象的属性不止一个。
@RequestParam 就相当于是 request.getParameter() 方法。
正常的用法如下:
@RequestParam String xttblog // 下面的对传入参数指定为 xttblog,如果前端不传 xttblog 参数名,会报错 @RequestParam(value="xttblog") String xttblog
错误信息如下:
HTTP Status 400 – Required String parameter 'xttblog' is not present
@RequestParam 还有一个 required 属性,当我们配置 required 参数后,上面的代码就不会报错了。
通过 required=false 或者 required=true 来要求 @RequestParam 配置的前端参数是否一定要传。required=false 表示不传的话,会给参数赋值为 null,required=true 就是必须要有。
如果注解的参数是 int 基本类型,这时再用 required=false,就会报错,因为不传值,把 null 赋值给 int,肯定会报错。具体的错误如下:
“Consider declaring it as object wrapper for the corresponding primitive type.”
要解决这个错误也很简单。就是把基本数据类型改为包装数据类型即可。如 int 改为 Integer。
: » org.springframework.web.bind.MissingServletRequestParameterException: Required xxx parameter ‘xxx’ is not present
原创文章,作者:jamestackk,如若转载,请注明出处:https://blog.ytso.com/251847.html