java 远程调用第三方服务
2021/10/19 17:39:35
本文主要是介绍java 远程调用第三方服务,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1.httpclient
2.RestTemplate
private static ResultIf<PdfPlanIdsDto> get(String url) { ResultIf<PdfPlanIdsDto> pdfPlanIdsDto = null; try { log.info("url={}", url); HttpHeaders headers = new HttpHeaders(); headers.add("Accept", "application/json"); headers.add("Content-Encoding", "UTF-8"); headers.add("Content-Type", "application/json; charset=UTF-8"); org.springframework.http.HttpEntity<String> requestEntity = new org.springframework.http.HttpEntity<>(null, headers); ResponseEntity<String> response = restTemplate.exchange(url, HttpMethod.GET, requestEntity, String.class); if (response.getStatusCode().equals(HttpStatus.OK)) { String body = response.getBody(); //转对象 pdfPlanIdsDto= JSON.parseObject(body, new TypeReference<ResultIf<PdfPlanIdsDto>>() { }); } } catch (Exception e) { log.error("{},请求服务器异常:{}", url,e); } return pdfPlanIdsDto; } |
这篇关于java 远程调用第三方服务的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26消息中间件源码剖析教程
- 2024-11-26JAVA语音识别项目资料的收集与应用
- 2024-11-26Java语音识别项目资料:入门级教程与实战指南
- 2024-11-26SpringAI:Java 开发的智能新利器
- 2024-11-26Java云原生资料:新手入门教程与实战指南
- 2024-11-26JAVA云原生资料入门教程
- 2024-11-26Mybatis官方生成器资料详解与应用教程
- 2024-11-26Mybatis一级缓存资料详解与实战教程
- 2024-11-26Mybatis一级缓存资料详解:新手快速入门
- 2024-11-26SpringBoot3+JDK17搭建后端资料详尽教程