八卦阵 发表于 2024-9-17 15:44:24

Hutool——发送http请求案例

前言

在现实开发过程中,微服务环境下往往接纳openfeign实现服务与服务之间的请求调用。但有时候必要调用第三方API的环境,固然在spring boot 框架中提供了RestTemplate请求模板,但这个不怎么好用。
市面上支持http调用的框架技能很多,比如okhttp等。本篇文章重点说明Hutool给我们封装的请求方法类。
依赖环境

使用Hutool,必要引入对应的依赖。如下:
<dependency>
    <groupId>cn.hutool</groupId>
    <artifactId>hutool-all</artifactId>
    <version>5.7.5</version>
</dependency>
Hutool 请求验证

预备第三方接口

预备get、常规 post、非常规post两种接口。
import cn.xj.model.Result;
import cn.xj.model.UserVo;
import org.springframework.web.bind.annotation.*;

import java.util.HashMap;
import java.util.Map;

@RestController
@RequestMapping("/test")
public class TestController {

    /**
   * 常规 get 请求
   * @param name
   * @param age
   * @return
   */
    @GetMapping("/get")
    public Result get(String name,Integer age){
      Map<String,Object> map = new HashMap<>();
      map.put("name",name);
      map.put("age",age);
      return Result.success(map);
    }

    /**
   * post 请求,未指定 Content-Type 时,默认是 application/json,参数传递在boby
   * 若指定类型为 application/x-www-form-urlencoded,参数传递在请求头上,类似get
   * @param name
   * @param age
   * @return
   */
    @PostMapping("/post1")
    public Result post1(@RequestParam String name,
                        @RequestParam Integer age){
      Map<String,Object> map = new HashMap<>();
      map.put("name",name);
      map.put("age",age);
      return Result.success(map);
    }

    @PostMapping("/post2")
    public Result post2(@RequestBody UserVo body){
      Map<String,Object> map = new HashMap<>();
      map.put("name2",body.getName());
      map.put("age2",body.getAge());
      map.put("body",body);
      return Result.success(map);
    }
}
【注意】这里做一点说明。
   post 请求,
未指定 Content-Type 时,默认是 application/json,参数传递在boby
若指定类型为 application/x-www-form-urlencoded,参数传递在请求头上,类似get
参考资料:
Axios请求头中常见的Content-Type常见的三种格式
https://i-blog.csdnimg.cn/direct/01279c1c003449039a6870dc20fb2293.png
编写接口调用上述定义接口

import cn.hutool.http.ContentType;
import cn.hutool.http.Header;
import cn.hutool.http.HttpRequest;
import cn.hutool.http.HttpResponse;
import cn.xj.model.Result;
import com.alibaba.fastjson.JSONObject;
import org.springframework.web.bind.annotation.*;
import java.util.HashMap;
import java.util.Map;

@RestController
@RequestMapping("/http")
public class HttpTestController {

    /**
   * 调用post 接口发送get请求
   * @return
   */
    @PostMapping("/post/get")
    public Result getRequest(){
      // 设定headermapget 请求对请求头的设置没影响
      HashMap<String, String> headerMap = new HashMap<>();
      headerMap.put(Header.CONTENT_TYPE.getValue(), ContentType.JSON.getValue()); // application/json
      //headerMap.put(Header.CONTENT_TYPE.getValue(), ContentType.FORM_URLENCODED.getValue()); // application/x-www-form-urlencoded

      HashMap<String, Object> bodyMap = new HashMap<>();
      bodyMap.put("name","香蕉");
      bodyMap.put("age","20");

      // 请求
      HttpResponse response = HttpRequest.get("http://localhost:80/test/get")
                .form(bodyMap) // url 上加参数
                .addHeaders(headerMap).timeout(20000).execute();
      return Result.success(response.body());
    }

    /**
   * 调用post 查询第三方post请求
   * @param type 类别
   *             0、application/x-www-form-urlencoded
   *             1、application/json
   * @return
   */
    @PostMapping("/post/post")
    public Result postRequest(@RequestParam Integer type){
      HashMap<String, Object> bodyMap = new HashMap<>();
      bodyMap.put("name","香蕉");
      bodyMap.put("age","20");

      String bodyStr = "";
      String url = "";
      HashMap<String, String> headerMap = new HashMap<>();
      if(0 == type){
            headerMap.put(Header.CONTENT_TYPE.getValue(), ContentType.FORM_URLENCODED.getValue()); // application/x-www-form-urlencoded
            // post 请求默认是 application/json,如果是 application/x-www-form-urlencoded 则需要保证参数在url后
            StringBuilder sb = new StringBuilder();
            for (Map.Entry<String, Object> stringObjectEntry : bodyMap.entrySet()) {
                String key = stringObjectEntry.getKey();
                Object value = stringObjectEntry.getValue();
                sb.append(key).append("=").append(value).append("&");
            }
            bodyStr = sb.deleteCharAt(sb.length() - 1).toString();
            url = "http://localhost:80/test/post1";
      }else{
            headerMap.put(Header.CONTENT_TYPE.getValue(), ContentType.JSON.getValue()); // application/json
            bodyStr = JSONObject.toJSONString(bodyMap);
            url = "http://localhost:80/test/post2";
      }

      // 请求
      HttpResponse response = HttpRequest.post(url)
                // .form(bodyMap) // url 上加参数
                .body(bodyStr)
                .addHeaders(headerMap).timeout(20000).execute();
      return Result.success(response.body());
    }
}
自考试证

get 请求

使用get请求时,不管设定的Content-Type是application/json,亦或者application/x-www-form-urlencoded,传递数据在body时,都不会被解析。
   http://localhost/http/post/get
https://i-blog.csdnimg.cn/direct/a32bcd0dc33846ccaa4f06b294991a20.png
post 非常规 application/x-www-form-urlencoded

   http://localhost/http/post/post?type=0
https://i-blog.csdnimg.cn/direct/0e02ba7931b34e68884c7e904e6a31cc.png
请求后的数据返回样式如下:
https://i-blog.csdnimg.cn/direct/3fde52c61b30436dacc79f63ffa4b59d.png
post 常规 application/json

   http://localhost/http/post/post?type=2
https://i-blog.csdnimg.cn/direct/8e49f12eebe2459eb7c668fae8d480f7.png
请求后的数据返回样式如下:
https://i-blog.csdnimg.cn/direct/49c131f66f5948aa8369d6678940e1eb.png

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: Hutool——发送http请求案例