02、RestTemplate学习笔记

简介: 02、RestTemplate学习笔记

一、RestTemplate


RestTemplate使用详解


RestTemplate是Spring提供的用于访问Rest服务的客户端,RestTemplate提供了多种便捷访问远程Http服务的方法,能够大大提高客户端的编写效率。


之前的HTTP开发是用apache的HttpClient开发,代码复杂,还得操心资源回收等。代码很复杂,冗余代码多。


二、快速使用


SpringBoot依赖2.7.1版本:我们只需要导入web启动器即可


<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>


我们来进行编写三种案例:①GET。②POST JSON。③POST 表单。


package com.changlu.resttemplate.controller;
import com.changlu.resttemplate.domain.User;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
/**
 * @Description: 测试控制器
 * @Author: changlu
 * @Date: 4:04 PM
 */
@RestController
public class TestController {
    @GetMapping("/testGet")
    public String get(String name) {
        System.out.println(name);
        return "ok";
    }
    /**
     * post传参 两种
     *  json参数的核心  header content-type = application/json;charset=utf-8
     *
     * @return
     */
    @PostMapping("/testPost1")
    public String testPost1(@RequestBody User user) {
        System.out.println(user);
        return "ok";
    }
    /**
     * 接收表单参数
     * <form action=/testPost2
     * <input name=ccc value=ssss
     *  header content-type = application/x-www-form-urlencoded
     * @param user
     * @return
     */
    @PostMapping("/testPost2")
    public String testPost2(User user) {
        System.out.println(user);
        return "ok";
    }
}



接着我们来使用测试类RestTemplate来进行测试:分别对应三个请求


package com.changlu.resttemplate;
import com.changlu.resttemplate.domain.User;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.http.ResponseEntity;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.web.client.RestTemplate;
@SpringBootTest
class RestTemplateApplicationTests {
    @Test
    void contextLoads() {
        RestTemplate restTemplate = new RestTemplate();
        //访问百度页面
        String url = "https://www.baidu.com";
        String content = restTemplate.getForObject(url, String.class);
        System.out.println(content);
    }
    @Test
    void testGet() {
        RestTemplate restTemplate = new RestTemplate();
        String url = "http://localhost:8080/testGet?name=cxs";
        //        String result = restTemplate.getForObject(url, String.class);
        ResponseEntity<String> responseEntity = restTemplate.getForEntity(url, String.class);
        // http:// 协议 (规范 接头暗号)
        // 请求头 请求参数 .. 响应头 响应状态码 报文 ....
        System.out.println(responseEntity);
    }
    @Test
    void testPostJson() {
        RestTemplate restTemplate = new RestTemplate();
        String url = "http://localhost:8080/testPost1";
        //封装对象
        User user = new User("changlu", 22, 1000D);
        //发送POST,而且是JSON参数,在web里面默认会使用jackson,会将对象转为字符串
        String content = restTemplate.postForObject(url, user, String.class);
        System.out.println(content);
    }
    @Test
    void testPost() {
        RestTemplate restTemplate = new RestTemplate();
        String url = "http://localhost:8080/testPost2";
        //对于表单参数,使用LinkedMultiValueMap来进行封装
        LinkedMultiValueMap<String, Object> map = new LinkedMultiValueMap<>();
        map.add("name", "changlu");
        map.add("age", 26);
        map.add("price", 80080);
        String content = restTemplate.postForObject(url, map, String.class);
        System.out.println(content);
    }
}
相关文章
|
6月前
|
JSON Java 数据格式
如何优雅的使用 RestTemplate
如何优雅的使用 RestTemplate
|
XML JSON Java
RestTemplate使用详解
RestTemplate使用详解
|
JSON Java Apache
RestTemplate的超全讲解(全)
目录前言1. 简介2. http状态码3. get请求4. post请求5. Exchange 前言 主要介绍RestTemplate的原理以及使用等 1. 简介 常见的http客户端请求工具: jdk HttpURLConnection Apache HttpClient 比较常用 OkHttp 比较常用 RestTemplate是一个同步的web http客户端请求模板工具 是基于spring框架的底层的一个知识点 具体常用的方法如官网所示 RestTemplate官方文档 部分常用方法截图如下:
485 0
RestTemplate的超全讲解(全)
|
缓存 负载均衡 算法
LoadBalanced结合Rest|学习笔记
快速学习LoadBalanced结合Rest
|
Java 网络架构 Spring
RestTemplate
RestTemplate提供了多种便捷访问远程Http服务的方法, 是一种简单便捷的访问restful服务模板类,是Spring提供的用于访问Rest服务的客户端模板工具集
SpringCloud - RestTemplate的三种使用方式
SpringCloud - RestTemplate的三种使用方式
339 0
SpringCloud - RestTemplate的三种使用方式
|
微服务
resttemplate的ReadTimeout和ConnectTimeout
resttemplate的ReadTimeout和ConnectTimeout
如何正确使用RestTemplate【三】
上篇文章我们说了POST请求和OPTIONS请求相关的方法,对其中的postForLocation方法和optionsForAllow方法进行了一个具体使用上的阐述。今天我们来学习RestTemplate中的PUT请求、DELETE请求、PATCH请求相关的方法,要相信厚积薄发,每天学习一点点。
166 0
如何正确使用RestTemplate【三】
如何正确使用RestTemplate【六】
上篇文章,我们学习了HEAD请求的相关方法的使用方法,以及具体参数的不同,当然还有一些代码示例、使用场景等,今天我们来学习POST请求的使用方法。
194 0
如何正确使用RestTemplate【九】
我们学习了PATCH请求的相关方法的使用方法,以及具体参数的不同,当然还有一些代码示例等。今天我们来学习DELETE请求的使用方法,来共同学习一下吧。
223 0