【WEB 系列】RestTemplate 基础用法小结
在 Spring 项目中,通常会借助RestTemplate
来实现网络请求,RestTemplate 封装得很完善了,基本上可以非常简单的完成各种 HTTP 请求,本文主要介绍一下基本操作,最常见的 GET/POST 请求的使用姿势
I. 项目搭建
1. 配置
借助 SpringBoot 搭建一个 SpringWEB 项目,提供一些用于测试的 REST 服务
- SpringBoot 版本:
2.2.1.RELEASE
- 核心依赖:
spring-boot-stater-web
<dependencies>
<dependency>
<groupId>org.springframework.bootgroupId>
<artifactId>spring-boot-starter-webartifactId>
dependency>
dependencies>
为了后续输出的日志更直观,这里设置了一下日志输出格式,在配置文件application.yml
中,添加
logging:
pattern:
console: (%msg%n%n){blue}
2. Rest 服务
添加三个接口,分别提供 GET 请求,POST 表单,POST json 对象,然后返回请求头、请求参数、cookie,具体实现逻辑相对简单,也不属于本篇重点,因此不赘述说明
@RestController
public class DemoRest {
private String getHeaders(HttpServletRequest request) {
Enumeration headerNames = request.getHeaderNames();
String name;
JSONObject headers = new JSONObject();while (headerNames.hasMoreElements()) {
name = headerNames.nextElement();
headers.put(name, request.getHeader(name));
}return headers.toJSONString();
}private String getParams(HttpServletRequest request) {
return JSONObject.toJSONString(request.getParameterMap());
}private String getCookies(HttpServletRequest request) {
Cookie[] cookies = request.getCookies();if (cookies == null || cookies.length == 0) {
return "";
}
JSONObject ck = new JSONObject();for (Cookie cookie : cookies) {
ck.put(cookie.getName(), cookie.getValue());
}return ck.toJSONString();
}private String buildResult(HttpServletRequest request) {
return buildResult(request, null);
}private String buildResult(HttpServletRequest request, Object obj) {
String params = getParams(request);
String headers = getHeaders(request);
String cookies = getCookies(request);if (obj != null) {