腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
工具
TVP
最新优惠活动
文章/答案/技术大牛
搜索
搜索
关闭
发布
精选内容/技术社群/优惠产品,
尽在小程序
立即前往
文章
问答
(9999+)
视频
沙龙
1
回答
使用
resttemplate
获取jsonarray的
400
错误
、
我使用
resttemplate
,并使用对象
post
json数组,但我得到了
400
(HTTP消息不可读)。System.currentTimeMillis());
RestTemplate
restTemplate
=
RestTemplate
.getRestTemplate(); ResponseEntity&
浏览 0
提问于2018-05-08
得票数 0
2
回答
发送匿名对象- Rest控制器- Spring启动
、
、
、
、
与下面的json匹配的类是什么: "id1" : { "apiToCall2"apiToCall8" : ["600", "700", "500"] "id3" : { &q
浏览 6
提问于2021-05-28
得票数 0
4
回答
Spring
RestTemplate
post
使用HashMap中的参数抛出
400
错误请求
、
、
当我使用Spring
RestTemplate
.postForObject通过HashMap发布参数时,服务器抛出
400
个错误请求:14:51:20.113 [main] DEBUG org.springframework.web.client.
RestTemplate
- <em
浏览 0
提问于2018-04-05
得票数 1
1
回答
来自
RestTemplate
的接口的响应需要在请求体中传递给另一个接口。但它失败了,出现了
400
错误
、
、
我正在尝试使用
RestTemplate
将一个接口的响应传递给另一个接口,该接口可能包含\n或引号(“)。 但它总是失败,出现
400
个错误。我猜是因为其中的换行符和引号造成了帖子主体的损坏。,"replyTo":"test@test.com",“body”:“调用\n”} Request URL: http://localhost:8080/endpoint/test, action:
POST
, status:
400
org.springfr
浏览 26
提问于2020-12-21
得票数 0
2
回答
无法使用调用Salesforce API
、
、
restTemplate
= new
RestTemplate
(); System.out.println("TOKEN DETAILS :: "+result.getBody2017-10-14 18:40:35 DEBUG o.s.web.clien
浏览 5
提问于2017-10-14
得票数 1
回答已采纳
1
回答
RestTemplate
POST
表单URL编码数据导致
400
个错误
、
、
、
、
我正在使用Spring的(2.5.4版)
RESTTemplate
对REST端点(url)进行
POST
调用。(url, HttpMethod.
POST
, request, TokenValidationResponse.class); } 我总是遇
浏览 5
提问于2022-03-09
得票数 0
1
回答
如何在rest模板中使用List<T>和HTTPEntity发送
线程"main“中出现异常
RestTemplate
restTemplate
= new
RestTemplate
(); UriComponentsBuilder builder = UriComponentsBuilder.fromHttpUrl(httpEntity = new HttpEntity<List<T>>(eventsLis
浏览 0
提问于2017-01-11
得票数 0
1
回答
在单元测试中未执行Hystrix回退
、
、
我实现了一个断路器,当我运行它时,它工作得很好(这意味着只要
RestTemplate
接收到一个介于
400
和599之间的HTTP状态码,就会运行回退方法)。但是,当我试图通过返回一个Bad Request (HTTP
400
)来对这种回退进行单元测试时,回退方法并没有被调用。为什么会这样呢?来自类的代码片段: class Test {private
RestTemplate
restTemplate
;
浏览 8
提问于2019-03-20
得票数 0
2
回答
HTTPClientErrorException:
400
使用Spring REST模板的错误请求
、
、
、
>> ();
restTemplate
.setMessageConverters(messageConverters); ResponseEntity<String> responseEntity =
restTemplate
.exchange(url, HttpMethod.
浏览 0
提问于2012-10-30
得票数 0
2
回答
RestTemplate
.postForObject -错误: org.springframework.web.client.HttpClientErrorException:
400
错误请求
、
、
、
restTemplate
= (this.
restTemplate
== null) ?(converters); } ADVERTENCIA:
POST
request for "[here the link in the code]" resul
浏览 9
提问于2013-10-09
得票数 4
1
回答
MockRestServiceServer单元测试用例中的错误
、
、
但是当我用 mockServer = MockRestServiceServer.createServer(
restTemplate
); WebTarget targetmockServer.expect(requestTo(containsString(ROOT_RESOURCE_PATH))).andExpec
浏览 2
提问于2016-12-19
得票数 0
3
回答
Spring
RestTemplate
用于
POST
请求,带有自定义标头和请求对象
、
、
、
、
在Spring
RestTemplate
中,有一种方法可以将自定义头与
POST
请求对象一起发送。我已经尝试了可用的exchange方法。下面的代码演示了这种尝试,它似乎是服务器的
400
BadRequest。> httpEntity = new HttpEntity<Object>(requestDTO, requestHeaders);
restTe
浏览 0
提问于2014-02-12
得票数 18
回答已采纳
1
回答
RestTemplate
POST
请求urlformencoded给出
400
(错误请求)
、
、
new HttpHeaders(); HttpEntity<Object> e
浏览 10
提问于2016-09-15
得票数 2
3
回答
Spring &
RestTemplate
:无法使用REST服务
、
、
、
服务--有一个
POST
方法:@RequestMapping(value = "/linkreachable", method = RequestMethod.
POST
; return
浏览 5
提问于2015-01-04
得票数 3
回答已采纳
4
回答
包含
RestTemplate
编码数据的Spring URL请求
、
、
我是Spring的新手,正在尝试用
RestTemplate
做rest请求。color=#5843AD" --header "PRIVATE-TOKEN: xyz" "https://someserver.com/api/v3/projects/1/labels"
RestTemplate
restTemplate
浏览 0
提问于2018-03-06
得票数 23
1
回答
使用Spring
RestTemplate
的
POST
请求- BadRequest
400
当我试图在一个实际实现的web服务类中使用这个客户端(继承的原因)时,当我试图执行
POST
请求时,它给出了http
400
Bad request错误。然而,对于GET请求,它不会产生任何问题。基础服务器中的
RestTemplate
<@RequestMapping(value = &quo
浏览 29
提问于2013-04-01
得票数 1
1
回答
Android spring移动rest模板
post
请求导致
400
(错误请求)调用错误处理程序
、
、
、
我正在尝试一个简单的帖子,从Android到Spring服务,但是我得到了针对URL的
post
请求,结果是
400
(糟糕的请求):调用错误处理程序org.springframework.web.client.HttpClientErrorException:
400
坏请求protected String doInBackground(MediaType... params) { HttpHeaders> requestEntity = new HttpEntity&
浏览 0
提问于2014-11-20
得票数 0
2
回答
文件上传
、
(fileServiceUrl, HttpMethod.
POST
, requestEntity, new ParameterizedTypeReference<UploadResponse>(){}).uploadResponse.getSessionId());文件服务API是这样的: @RequestMapping(value = "/simpleUploader", method = RequestMethod.
POST
@RequestParam("fileName") String
浏览 3
提问于2017-04-13
得票数 2
回答已采纳
1
回答
在Spring Rest中使用JSON的HTTP
POST
、
、
、
、
我想用Spring
RestTemplate
创建一个简单的HTTP
POST
。
restTemplate
= new
RestTemplate
();
restTemplate
.getMessageConverters.exchange(uri, HttpMethod.
POST
, entity, String.class); System.out.println(respo
浏览 0
提问于2015-12-02
得票数 5
回答已采纳
1
回答
Robospice面临错误,但是onRequestSuccess被调用
、
、
我是POSTing来服务器一个请求,但是当我面对一个 jsonObject.put(constants.TAG_ORDER_ID, bOrderID);
r
浏览 0
提问于2015-05-25
得票数 2
回答已采纳
点击加载更多
扫码
添加站长 进交流群
领取专属
10元无门槛券
手把手带您无忧上云
相关
资讯
Spring RestTemplate终极使用归纳总结
POST其实很简单 1 易语言POST技术介绍
POST配置
关注点分离之RestTemplate的错误处理
【HT】Internal Post
热门
标签
更多标签
云服务器
ICP备案
对象存储
腾讯会议
实时音视频
活动推荐
运营活动
广告
关闭
领券