Spring请求问题之MissingServletRequestParameterException: Required xxx parameter ‘xxx’ is not present
这是最近我们项目组遇到的问题。项目组的同事和往常一样写代码,但是在测试的时候,发现传递的参数怎么也获取不到值。于是找我咨询,然后我根据后台的异常信息和对应的代码指出了 @RequestParam 的用法问题。
首先我们根据错误提示信息:“org.springframework.web.bind.MissingServletRequestParameterException: Required xxx parameter 'xxx' is not present”。MissingServletRequestParameterException 异常就是一个参数绑定异常。也就是说,你在 Controller 中写的方法中用的 @RequestParam 指定的参数没有获取到。
@RequestParam 主要是用来绑定一个基本数据类型或 String 数据类型的参数。如果是一个对象,则不能使用 @RequestParam 来指定。因为对象的属性不止一个。
@RequestParam 就相当于是 request.getParameter() 方法。
正常的用法如下:
1
|
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。
<li class="tool-item tool-active is-like "><a href="javascript:;"><svg class="icon" aria-hidden="true">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#csdnc-thumbsup"></use>
</svg><span class="name">点赞</span>
<span class="count"></span>
</a></li>
<li class="tool-item tool-active is-collection "><a href="javascript:;" data-report-click="{"mod":"popu_824"}"><svg class="icon" aria-hidden="true">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-csdnc-Collection-G"></use>
</svg><span class="name">收藏</span></a></li>
<li class="tool-item tool-active is-share"><a href="javascript:;"><svg class="icon" aria-hidden="true">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-csdnc-fenxiang"></use>
</svg>分享</a></li>
<!--打赏开始-->
<!--打赏结束-->
<li class="tool-item tool-more">
<a>
<svg t="1575545411852" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5717" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M179.176 499.222m-113.245 0a113.245 113.245 0 1 0 226.49 0 113.245 113.245 0 1 0-226.49 0Z" p-id="5718"></path><path d="M509.684 499.222m-113.245 0a113.245 113.245 0 1 0 226.49 0 113.245 113.245 0 1 0-226.49 0Z" p-id="5719"></path><path d="M846.175 499.222m-113.245 0a113.245 113.245 0 1 0 226.49 0 113.245 113.245 0 1 0-226.49 0Z" p-id="5720"></path></svg>
</a>
<ul class="more-box">
<li class="item"><a class="article-report">文章举报</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="person-messagebox">
<div class="left-message"><a href="https://blog.csdn.net/zhuzj12345">
<img src="https://profile.csdnimg.cn/D/3/7/3_zhuzj12345" class="avatar_pic" username="zhuzj12345">
<img src="https://g.csdnimg.cn/static/user-reg-year/1x/9.png" class="user-years">
</a></div>
<div class="middle-message">
<div class="title"><span class="tit"><a href="https://blog.csdn.net/zhuzj12345" data-report-click="{"mod":"popu_379"}" target="_blank">kevin_zhuzj</a></span>
</div>
<div class="text"><span>发布了127 篇原创文章</span> · <span>获赞 58</span> · <span>访问量 26万+</span></div>
</div>
<div class="right-message">
<a href="https://im.csdn.net/im/main.html?userName=zhuzj12345" target="_blank" class="btn btn-sm btn-red-hollow bt-button personal-letter">私信
</a>
<a class="btn btn-sm bt-button personal-watch" data-report-click="{"mod":"popu_379"}">关注</a>
</div>
</div>
</div>
推荐阅读
-
请求报错Required String parameter 'xxx' is not present
-
Spring请求问题之MissingServletRequestParameterException: Required xxx parameter ‘xxx’ is not present
-
解决Required XXX parameter ‘XXX‘ is not present问题
-
Spring Boot解决Required String parameter xxx is not present类型异常
-
spring boot Required request parameter ‘xxx‘ for method parameter type xxx is not present