Restful PUT 方法,server端接受不到参数

在不使用Restful框架如Spring MVC的情况下,PUT请求的参数在服务器端通过request.getParameters()无法获取。可以使用HttpPutFormContentFilter解析请求体或将参数封装为Json传递。server端需添加filter来处理PUT请求的表单内容,client端可以改为发送Json格式的数据。
摘要由CSDN通过智能技术生成
不使用Restful框架,Spring MVC等方式开发一个Restful API.

client code:

private static void doPut(String url) throws IOException {
HttpPut httpPut = new HttpPut(url);
List<NameValuePair> parameters = new ArrayList<>();
parameters.add(new BasicNameValuePair("code", "c1"));
parameters.add(new BasicNameValuePair("id", "1"));

httpPut.setEntity(new UrlEncodedFormEntity(parameters, StandardCharsets.UTF_8));

HttpResponse httpResponse = HttpClients.createDefault().execute(httpPut);

int status = httpResponse.getStatusLine().getStatusCode();

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值