Hutool——发送http请求案例

打印 上一主题 下一主题

主题 785|帖子 785|积分 2355

前言

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

使用Hutool,必要引入对应的依赖。如下:
  1. <dependency>
  2.     <groupId>cn.hutool</groupId>
  3.     <artifactId>hutool-all</artifactId>
  4.     <version>5.7.5</version>
  5. </dependency>
复制代码
Hutool 请求验证

预备第三方接口

预备get、常规 post、非常规post两种接口。
  1. import cn.xj.model.Result;
  2. import cn.xj.model.UserVo;
  3. import org.springframework.web.bind.annotation.*;
  4. import java.util.HashMap;
  5. import java.util.Map;
  6. @RestController
  7. @RequestMapping("/test")
  8. public class TestController {
  9.     /**
  10.      * 常规 get 请求
  11.      * @param name
  12.      * @param age
  13.      * @return
  14.      */
  15.     @GetMapping("/get")
  16.     public Result get(String name,Integer age){
  17.         Map<String,Object> map = new HashMap<>();
  18.         map.put("name",name);
  19.         map.put("age",age);
  20.         return Result.success(map);
  21.     }
  22.     /**
  23.      * post 请求,未指定 Content-Type 时,默认是 application/json,参数传递在boby
  24.      * 若指定类型为 application/x-www-form-urlencoded,参数传递在请求头上,类似get
  25.      * @param name
  26.      * @param age
  27.      * @return
  28.      */
  29.     @PostMapping("/post1")
  30.     public Result post1(@RequestParam String name,
  31.                         @RequestParam Integer age){
  32.         Map<String,Object> map = new HashMap<>();
  33.         map.put("name",name);
  34.         map.put("age",age);
  35.         return Result.success(map);
  36.     }
  37.     @PostMapping("/post2")
  38.     public Result post2(@RequestBody UserVo body){
  39.         Map<String,Object> map = new HashMap<>();
  40.         map.put("name2",body.getName());
  41.         map.put("age2",body.getAge());
  42.         map.put("body",body);
  43.         return Result.success(map);
  44.     }
  45. }
复制代码
【注意】这里做一点说明。
   post 请求,
未指定 Content-Type 时,默认是 application/json,参数传递在boby
若指定类型为 application/x-www-form-urlencoded,参数传递在请求头上,类似get
  参考资料:
Axios请求头中常见的Content-Type常见的三种格式

编写接口调用上述定义接口

  1. import cn.hutool.http.ContentType;
  2. import cn.hutool.http.Header;
  3. import cn.hutool.http.HttpRequest;
  4. import cn.hutool.http.HttpResponse;
  5. import cn.xj.model.Result;
  6. import com.alibaba.fastjson.JSONObject;
  7. import org.springframework.web.bind.annotation.*;
  8. import java.util.HashMap;
  9. import java.util.Map;
  10. @RestController
  11. @RequestMapping("/http")
  12. public class HttpTestController {
  13.     /**
  14.      * 调用post 接口发送get请求
  15.      * @return
  16.      */
  17.     @PostMapping("/post/get")
  18.     public Result getRequest(){
  19.         // 设定headermap  get 请求对请求头的设置没影响
  20.         HashMap<String, String> headerMap = new HashMap<>();
  21.         headerMap.put(Header.CONTENT_TYPE.getValue(), ContentType.JSON.getValue()); // application/json
  22.         //headerMap.put(Header.CONTENT_TYPE.getValue(), ContentType.FORM_URLENCODED.getValue()); // application/x-www-form-urlencoded
  23.         HashMap<String, Object> bodyMap = new HashMap<>();
  24.         bodyMap.put("name","香蕉");
  25.         bodyMap.put("age","20");
  26.         // 请求
  27.         HttpResponse response = HttpRequest.get("http://localhost:80/test/get")
  28.                 .form(bodyMap) // url 上加参数
  29.                 .addHeaders(headerMap).timeout(20000).execute();
  30.         return Result.success(response.body());
  31.     }
  32.     /**
  33.      * 调用post 查询第三方post请求
  34.      * @param type 类别
  35.      *             0、application/x-www-form-urlencoded
  36.      *             1、application/json
  37.      * @return
  38.      */
  39.     @PostMapping("/post/post")
  40.     public Result postRequest(@RequestParam Integer type){
  41.         HashMap<String, Object> bodyMap = new HashMap<>();
  42.         bodyMap.put("name","香蕉");
  43.         bodyMap.put("age","20");
  44.         String bodyStr = "";
  45.         String url = "";
  46.         HashMap<String, String> headerMap = new HashMap<>();
  47.         if(0 == type){
  48.             headerMap.put(Header.CONTENT_TYPE.getValue(), ContentType.FORM_URLENCODED.getValue()); // application/x-www-form-urlencoded
  49.             // post 请求默认是 application/json,如果是 application/x-www-form-urlencoded 则需要保证参数在url后
  50.             StringBuilder sb = new StringBuilder();
  51.             for (Map.Entry<String, Object> stringObjectEntry : bodyMap.entrySet()) {
  52.                 String key = stringObjectEntry.getKey();
  53.                 Object value = stringObjectEntry.getValue();
  54.                 sb.append(key).append("=").append(value).append("&");
  55.             }
  56.             bodyStr = sb.deleteCharAt(sb.length() - 1).toString();
  57.             url = "http://localhost:80/test/post1";
  58.         }else{
  59.             headerMap.put(Header.CONTENT_TYPE.getValue(), ContentType.JSON.getValue()); // application/json
  60.             bodyStr = JSONObject.toJSONString(bodyMap);
  61.             url = "http://localhost:80/test/post2";
  62.         }
  63.         // 请求
  64.         HttpResponse response = HttpRequest.post(url)
  65.                 // .form(bodyMap) // url 上加参数
  66.                 .body(bodyStr)
  67.                 .addHeaders(headerMap).timeout(20000).execute();
  68.         return Result.success(response.body());
  69.     }
  70. }
复制代码
自考试证

get 请求

使用get请求时,不管设定的Content-Type是application/json,亦或者application/x-www-form-urlencoded,传递数据在body时,都不会被解析。
   http://localhost/http/post/get
  

post 非常规 application/x-www-form-urlencoded

   http://localhost/http/post/post?type=0

  请求后的数据返回样式如下:

post 常规 application/json

   http://localhost/http/post/post?type=2

请求后的数据返回样式如下:


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

八卦阵

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表