- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章解决FeignClient发送post请求异常的问题由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
这个问题其实很基础。但是却难倒了我。记录一下 。
在发送post请求的时候要指定消息格式 。
1
2
|
@PostMapping
(value =
"/test/post"
, consumes =
"application/json"
)
String test(
@RequestBody
String name);
|
1
|
@PostMapping
(value =
"/test/post"
, produces=
"application/json"
)
|
produces:它的作用是指定返回值类型,不但可以设置返回值类型还可以设定返回值的字符编码; 。
consumes:指定处理请求的提交内容类型(Content-Type),例如application/json, text/html,
基础真的很重要啊~ 。
本文没有详细介绍 FeignClient 的知识点,网上有很多优秀的文章介绍了 FeignCient 的知识点,在这里本人就不重复了,只是专注在这个问题点上.
业务描述: 业务系统需要更新用户系统中的A资源,由于只想更新A资源的一个字段信息为B,所以没有选择通过 entity 封装B,而是直接通过查询参数来传递B信息 。
文字描述:使用FeignClient来进行远程调用时,如果POST请求中有查询参数并且没有请求实体(body为空),那么查询参数被丢失,服务提供者获取不到查询参数的值.
代码描述:B的值被丢失,服务提供者获取不到B的值 。
1
2
3
4
5
6
|
@FeignClient
(name =
"a-service"
, configuration = FeignConfiguration.
class
)
public
interface
ACall {
@RequestMapping
(method = RequestMethod.POST, value =
"/api/xxx/{A}"
, headers = {
"Content-Type=application/json"
})
void
updateAToB(
@PathVariable
(
"A"
)
final
String A,
@RequestParam
(
"B"
)
final
String B)
throws
Exception;
}
|
1
2
3
4
5
|
<
dependency
>
<
groupId
>com.netflix.feign</
groupId
>
<
artifactId
>feign-httpclient</
artifactId
>
<
version
>8.18.0</
version
>
</
dependency
>
|
通过对 FeignClient 的源码阅读,发现问题不是出在参数解析上,而是在使用 ApacheHttpClient 进行请求时,其将查询参数放进请求body中了,下面看源码具体是如何处理的 。
feign.httpclient.ApacheHttpClient 这是 feign-httpclient 进行实际请求的方法 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
@Override
public
Response execute(Request request, Request.Options options)
throws
IOException {
HttpUriRequest httpUriRequest;
try
{
httpUriRequest = toHttpUriRequest(request, options);
}
catch
(URISyntaxException e) {
throw
new
IOException(
"URL '"
+ request.url() +
"' couldn't be parsed into a URI"
, e);
}
HttpResponse httpResponse = client.execute(httpUriRequest);
return
toFeignResponse(httpResponse);
}
HttpUriRequest toHttpUriRequest(Request request, Request.Options options)
throws
UnsupportedEncodingException, MalformedURLException, URISyntaxException {
RequestBuilder requestBuilder = RequestBuilder.create(request.method());
//per request timeouts
RequestConfig requestConfig = RequestConfig
.custom()
.setConnectTimeout(options.connectTimeoutMillis())
.setSocketTimeout(options.readTimeoutMillis())
.build();
requestBuilder.setConfig(requestConfig);
URI uri =
new
URIBuilder(request.url()).build();
requestBuilder.setUri(uri.getScheme() +
"://"
+ uri.getAuthority() + uri.getRawPath());
//request query params
List<NameValuePair> queryParams = URLEncodedUtils.parse(uri, requestBuilder.getCharset().name());
for
(NameValuePair queryParam: queryParams) {
requestBuilder.addParameter(queryParam);
}
//request headers
boolean
hasAcceptHeader =
false
;
for
(Map.Entry<String, Collection<String>> headerEntry : request.headers().entrySet()) {
String headerName = headerEntry.getKey();
if
(headerName.equalsIgnoreCase(ACCEPT_HEADER_NAME)) {
hasAcceptHeader =
true
;
}
if
(headerName.equalsIgnoreCase(Util.CONTENT_LENGTH)) {
// The 'Content-Length' header is always set by the Apache client and it
// doesn't like us to set it as well.
continue
;
}
for
(String headerValue : headerEntry.getValue()) {
requestBuilder.addHeader(headerName, headerValue);
}
}
//some servers choke on the default accept string, so we'll set it to anything
if
(!hasAcceptHeader) {
requestBuilder.addHeader(ACCEPT_HEADER_NAME,
"*/*"
);
}
//request body
if
(request.body() !=
null
) {
//body为空,则HttpEntity为空
HttpEntity entity =
null
;
if
(request.charset() !=
null
) {
ContentType contentType = getContentType(request);
String content =
new
String(request.body(), request.charset());
entity =
new
StringEntity(content, contentType);
}
else
{
entity =
new
ByteArrayEntity(request.body());
}
requestBuilder.setEntity(entity);
}
//调用org.apache.http.client.methods.RequestBuilder#build方法
return
requestBuilder.build();
}
|
org.apache.http.client.methods.RequestBuilder 此类是 HttpUriRequest 的Builder类,下面看build方法 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
public
HttpUriRequest build() {
final
HttpRequestBase result;
URI uriNotNull =
this
.uri !=
null
?
this
.uri : URI.create(
"/"
);
HttpEntity entityCopy =
this
.entity;
if
(parameters !=
null
&& !parameters.isEmpty()) {
// 这里:如果HttpEntity为空,并且为POST请求或者为PUT请求时,这个方法会将查询参数取出来封装成了HttpEntity
// 就是在这里查询参数被丢弃了,准确的说是被转换位置了
if
(entityCopy ==
null
&& (HttpPost.METHOD_NAME.equalsIgnoreCase(method)
|| HttpPut.METHOD_NAME.equalsIgnoreCase(method))) {
entityCopy =
new
UrlEncodedFormEntity(parameters, charset !=
null
? charset : HTTP.DEF_CONTENT_CHARSET);
}
else
{
try
{
uriNotNull =
new
URIBuilder(uriNotNull)
.setCharset(
this
.charset)
.addParameters(parameters)
.build();
}
catch
(
final
URISyntaxException ex) {
// should never happen
}
}
}
if
(entityCopy ==
null
) {
result =
new
InternalRequest(method);
}
else
{
final
InternalEntityEclosingRequest request =
new
InternalEntityEclosingRequest(method);
request.setEntity(entityCopy);
result = request;
}
result.setProtocolVersion(
this
.version);
result.setURI(uriNotNull);
if
(
this
.headergroup !=
null
) {
result.setHeaders(
this
.headergroup.getAllHeaders());
}
result.setConfig(
this
.config);
return
result;
}
|
既然已经知道原因了,那么解决方法就有很多种了,下面就介绍常规的解决方案:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
HttpUriRequest toHttpUriRequest(Request request, Request.Options options)
throws
UnsupportedEncodingException, MalformedURLException, URISyntaxException {
RequestBuilder requestBuilder = RequestBuilder.create(request.method());
//省略部分代码
//request body
if
(request.body() !=
null
) {
//省略部分代码
}
else
{
// 此处,如果为null,则会塞入一个byte数组为0的对象
requestBuilder.setEntity(
new
ByteArrayEntity(
new
byte
[
0
]));
}
return
requestBuilder.build();
}
|
推荐的依赖 。
1
2
3
4
5
|
<
dependency
>
<
groupId
>io.github.openfeign</
groupId
>
<
artifactId
>feign-httpclient</
artifactId
>
<
version
>9.5.1</
version
>
</
dependency
>
|
或者 。
1
2
3
4
5
|
<
dependency
>
<
groupId
>io.github.openfeign</
groupId
>
<
artifactId
>feign-okhttp</
artifactId
>
<
version
>9.5.1</
version
>
</
dependency
>
|
目前绝大部分的介绍 feign 的文章都是推荐的 com.netflix.feign:feign-httpclient:8.18.0 和 com.netflix.feign:feign-okhttp:8.18.0 ,如果不巧你使用了 com.netflix.feign:feign-httpclient:8.18.0,那么在POST请求时并且body为空时就会发生丢失查询参数的问题.
这里推荐大家使用 feign-httpclient 或者是 feign-okhttp的时候不要依赖 com.netflix.feign,而应该选择 io.github.openfeign,因为看起来 Netflix 很久没有对这两个组件进行维护了,而是由 OpenFeign 来进行维护了.
以上为个人经验,希望能给大家一个参考,也希望大家多多支持我.
原文链接:https://blog.csdn.net/maobois/article/details/109903809 。
最后此篇关于解决FeignClient发送post请求异常的问题的文章就讲到这里了,如果你想了解更多关于解决FeignClient发送post请求异常的问题的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我正在尝试从该网站抓取历史天气数据: http://www.hko.gov.hk/cis/dailyExtract_uc.htm?y=2016&m=1 在阅读了 AJAX 调用后,我发现请求数据的正确
我有两个 postman 请求 x,y,它们命中了两个不同的休息 api X,Y 中的端点。 x 会给我一个身份验证 token ,这是发出 y 请求所必需的。如何在请求 y 中发出请求 x ?也就是
我使用请求库通过 API 与其他服务器进行通信。但现在我需要同时发送多个(10 个或更多)POST 请求,并且只有在所有响应都正确的情况下才能进一步前进。通常语法看起来有点像这样: var optio
背景:当用户单击按钮时,其类会在class1和class2之间切换,并且此数据是通过 AJAX 提交。为了确认此数据已保存,服务器使用 js 进行响应(更新按钮 HTML)。 问题:如果用户点击按钮的
我正在将 Node.js 中的请求库用于 Google 的文本转语音 API。我想打印出正在发送的请求,如 python example . 这是我的代码: const request = requi
我经常使用requests。最近我发现还有一个 requests2 和即将到来的 requests3 虽然有一个 page其中简要提到了 requests3 中的内容,我一直无法确定 requests
我正在尝试将图像发送到我的 API,然后从中获取结果。例如,我使用发送一个 bmp 图像文件 file = {"img": open("img.bmp)} r = requests.post(url,
我发现 Google Cloud 确保移出其物理环境的任何请求都经过强制加密,请参阅(虚拟机到虚拟机标题下的第 6 页)this link Azure(和 AWS)是否遵循类似的程序?如果有人能给我指
我有一个 ASP.NET MVC 应用程序,我正在尝试在 javascript 函数中使用 jQuery 来创建一系列操作。该函数由三部分组成。 我想做的是:如果满足某些条件,那么我想执行同步 jQu
我找不到如何执行 get http 请求,所以我希望你们能帮助我。 这个想法是从外部url(例如 https://api.twitter.com/1.1/search/tweets.json?q=tw
我的应用只需要使用“READ_SMS”权限。我的问题是,在 Android 6.0 上,当我需要使用新的权限系统时,它会要求用户“发送和查看短信”。 这是我的代码: ActivityCompat.re
我的前端代码: { this.searchInput = input; }}/> 搜索 // search method: const baseUrl = 'http://localho
我有一个由 AJAX 和 C# 应用程序使用的 WCF 服务, 我需要通过 HTTP 请求 header 发送一个参数。 在我的 AJAX 上,我添加了以下内容并且它有效: $.ajax({
我正在尝试了解如何使用 promises 编写代码。请检查我的代码。这样对吗? Node.js + 请求: request(url, function (error, response, body)
如果失败(除 HTTP 200 之外的任何响应代码),我需要重试发送 GWT RPC 请求。原因很复杂,所以我不会详细说明。到目前为止,我在同一个地方处理所有请求响应,如下所示: // We
当用户单击提交按钮时,我希望提交表单。然而,就在这种情况发生之前,我希望弹出一个窗口并让他们填写一些数据。一旦他们执行此操作并关闭该子窗口,我希望发出 POST 请求。 这可能吗?如果可能的话如何?我
像 Facebook 这样的网站使用“延迟”加载 js。当你必须考虑到我有一台服务器,流量很大时。 我很感兴趣 - 哪一个更好? 当我一次执行更多 HTTP 请求时 - 页面加载速度较慢(由于限制(一
Servlet 容器是否创建 ServletRequest 和 Response 对象或 Http 对象?如果是ServletRequest,谁在调用服务方法之前将其转换为HttpServletReq
这是维基百科文章的摘录: In contrast to the GET request method where only a URL and headers are sent to the serv
我有一个循环,每次循环时都会发出 HTTP post 请求。 for(let i = 1; i console.log("succes at " + i), error => con
我是一名优秀的程序员,十分优秀!