resttemplate 请求重试_通过restTemplate发送请求,特定类型参数无法被解析的问题...

客户端通过RestTemplate发送请求,requestBody是一个复杂数据类型,通过嵌套多层MultiValueMap的方式组合服务端需要的数据类型。

HttpEntity requestBody = generateAddAllRequestBody(strategyJobs);

ResponseEntity responseEntity = this.restTemplate.postForEntity(jobAddAllUrl, requestBody, String.class); private HttpEntity generateAddAllRequestBody(List strategyJobs) {

HttpHeaders headers = new HttpHeaders();

headers.setContentType(MediaType.MULTIPART_FORM_DATA);

MultiValueMap outerMap = new LinkedMultiValueMap<>();

for(StrategyJob strategyJob : strategyJobs) {

MultiValueMap map = new LinkedMultiValueMap();

map.add("jobGroup",strategyJob.getGroup());

map.add("jobDesc", strategyJob.getJobDesc());

map.add("executorRouteStrategy", "FIRST");

map.add("cronGen_display", strategyJob.getCron());

map.add("jobCron", strategyJob.getCron());

map.add("glueType", "BEAN");

map.add("executorHandler", strategyJob.getExecutorHandler());

map.add("executorBlockStrategy", "SERIAL_EXECUTION");

map.add("childJobId", "");

map.add("executorTimeout", 0);

map.add("executorFailRetryCount", 0);

map.add("author", strategyJob.getCreator());

map.add("alarmEmail", "");

map.add("executorParam", strategyJob.getStrategyId());

map.add("glueRemark", "GLUE代码初始化");

map.add("glueSource", "");

map.add("triggerStatus", 1);

if (strategyJob.getId() != null) {

map.add("id", strategyJob.getId());

}

outerMap.add(strategyJob.getKey(), map);

}

HttpEntity requestBody = new HttpEntity(outerMap, headers);

return requestBody;

}

服务端接收请求的时候,只能解析第一

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在Java,可以使用RestTemplate类来发送HTTP请求RestTemplate是Spring框架提供的一个用于访问Rest服务的客户端工具。它提供了多种方法来发送不同类型的HTTP请求,包括GET、POST、PUT、DELETE等。 要使用RestTemplate发送POST请求,可以使用其的exchange方法。exchange方法可以发送任意类型的HTTP请求,并且可以接收响应结果。 下面是使用RestTemplate发送POST请求的示例代码: ```java import org.springframework.http.HttpEntity; import org.springframework.http.HttpHeaders; import org.springframework.http.HttpMethod; import org.springframework.http.MediaType; import org.springframework.http.ResponseEntity; import org.springframework.util.MultiValueMap; import org.springframework.web.client.RestTemplate; public class RestClient { public static void main(String[] args) { // 创建RestTemplate对象 RestTemplate restTemplate = new RestTemplate(); // 设置请求头 HttpHeaders headers = new HttpHeaders(); headers.setContentType(MediaType.APPLICATION_FORM_URLENCODED); // 设置请求参数 MultiValueMap<String, String> params = new LinkedMultiValueMap<>(); params.add("param1", "value1"); params.add("param2", "value2"); // 创建HttpEntity对象,包含请求头和请求参数 HttpEntity<MultiValueMap<String, String>> requestEntity = new HttpEntity<>(params, headers); // 发送POST请求 ResponseEntity<String> responseEntity = restTemplate.exchange("http://example.com/api", HttpMethod.POST, requestEntity, String.class); // 获取响应结果 String response = responseEntity.getBody(); System.out.println(response); } } ``` 在上面的示例代码,我们首先创建了一个RestTemplate对象。然后,我们设置了请求头和请求参数,并创建了一个HttpEntity对象来包含这些信息。最后,我们使用exchange方法发送POST请求,并通过ResponseEntity对象获取响应结果。 需要注意的是,上述示例的URL和参数仅作为示例,实际使用时需要根据具体的接口和参数进行修改。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值