Java基础(十二)GET请求获取可变参数(HTTP Status 400 - Required String parameter 'a' is not present)

本文探讨了在Java中处理GET请求时遇到的HTTP Status 400错误,详细分析了如何通过@RequestParam注解和直接作为参数接收可变参数的方法,以及可能引发的‘Required String parameter 'a' is not present’异常。
摘要由CSDN通过智能技术生成

 

一.使用注解@RequestParam

 

  •   1.使用
@RequestMapping("/index")
public String index(HttpServletRequest request, HttpServletResponse response,Model model,
                    @RequestParam String a,
                    @RequestParam String b){}
2.报错原因:只是传入a,或者只是传入b
3.报错信息:HTTP Status 400 - Required String parameter 'a' is not present 
4.分析:@requestParam 不指定任何属性的时候,则默认为参数为必传,只有指定了request=false,则改参数才变为可传和可不传。
5.结果:
@RequestMapping("/index")
public String index(HttpServletRequest request, HttpServletResponse response,Model model,
                    @RequestParam(value="a",required = false) String a,
                    @RequestParam (value="b",required = false)String b){}

二.直接写成

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值