接口传参过长 [400] during [POST]

[ERROR] [http-nio-8090-exec-8] [DirectJDKLog.java:175] - Servlet.service() for servlet [dispatcherServlet] in context with path [/xxx-backend] threw exception [Request processing failed; nested exception is feign.FeignException$BadRequest: [400] during [POST] to [http://serviece-xxx/xxx/listByPertients?personals=......] [xxxxxxClient#listByPertients(List)]: [<!doctype html><html lang="en"><head><title>HTTP Status 400 – Bad Request</title><style type="text/css">body {font-family:Tahoma,Arial,sans-serif;} h1, h2, h3, b {color:white;background-color:#525D76;... (435 bytes)]] with root cause

接口报错,通过调试发现接口穿list接口太长

@PostMapping("xxxxSet/listByPertients")
List<xxxDto> listByPertients(@RequestParam  List<String> personals);

接口改为下面可以,最好限制list长度,或者分批次查询

@PostMapping("xxxxSet/listByPertients")
List<xxxDto> listByPertients(@RequestBody  List<String> personals);

原因:@RequestParam会经过Query String的方式,即便设置了提交方式是post也会将参数拼接在url的后面,然而url传参是有长度限制的(类似于Get请求),会截断后面的参数,致使请求失败 ;而RequestBody长度不会限制

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值