gpt4 book ai didi

java - 当我通过 RestTemplate 上的 POST 发送请求数组时,我收到错误 400

转载 作者:太空宇宙 更新时间:2023-11-04 11:24:38 30 4
gpt4 key购买 nike

有一个名为

的外部服务

http://externalServer:9000/pathServer/serviceCalled

此服务作为输入参数接收对象列表。

Request
[
{ "atr1" : "value" },
{ "atr1" : "value" },
{ "atr1" : "value" },
{ "atr1" : "value" }
]

在我的后端,我调用此服务,因为它不在我的域中。为此,我使用 Spring 的 RestTemplate。

我已经使用过这个,但是当我调用电话时,它给了我一个 400 bad request 错误。

这是我的代码。

String jsonValue= "[{ \"atr1\" : \"value\" },{ \"atr1\" : \"value\" },{ \"atr1\" : \"value\" },{ \"atr1\" : \"value\" }]";

HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON);

HttpEntity<String> entity = new HttpEntity<>(jsonValue,headers);

String url = "http://externalServer:9000/pathServer/serviceCalled";

ResponseEntity<String> STRresponse = restTemplate.exchange(url, HttpMethod.POST, entity, String.class);

STResponse 的输出打印为

enter image description here

我知道请求是正确的,因为当我用 postman 发送它时它工作正常。

enter image description here

我做错了什么?

最佳答案

您是否尝试过使用RequestEntity而不是HTTPEntity?

Spring 的 javadoc 有一个您可以遵循的示例。

https://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/http/RequestEntity.html

关于java - 当我通过 RestTemplate 上的 POST 发送请求数组时,我收到错误 400,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44508767/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com