温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

怎么在spring boot中利用WebClient对HTTP服务进行调用

发布时间:2021-03-22 17:54:14 来源:亿速云 阅读:303 作者:Leah 栏目:编程语言

怎么在spring boot中利用WebClient对HTTP服务进行调用?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。

WebClient的请求模式属于异步非阻塞,能够以少量固定的线程处理高并发的HTTP请求

WebClient是Spring WebFlux模块提供的一个非阻塞的基于响应式编程的进行Http请求的客户端工具,从Spring5.0开始提供

在Spring Boot应用中

1.添加Spring WebFlux依赖

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

2.使用

(1)Restful接口demoController.java

package com.example.demo.controller;

import com.example.demo.domain.MyData;
import org.springframework.http.HttpHeaders;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.*;

import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServletRequest;

@RestController
@RequestMapping("/api")
public class demoController {

  @GetMapping(value = "/getHeader", produces = {MediaType.APPLICATION_JSON_UTF8_VALUE})
  public MyData getHeader(HttpServletRequest request) {

    int id = 0;
    if (request.getParameter("id") != null) {
      id = Integer.valueOf(request.getParameter("id"));
    }
    String name = request.getParameter("name");
    //header
    String userAgent = "USER_AGENT——" + request.getHeader(HttpHeaders.USER_AGENT);
    userAgent += " | ACCEPT_CHARSET——" + request.getHeader(HttpHeaders.ACCEPT_CHARSET);
    userAgent += " | ACCEPT_ENCODING——" + request.getHeader(HttpHeaders.ACCEPT_ENCODING);
    userAgent += " | ContextPath——" + request.getContextPath();
    userAgent += " | AuthType——" + request.getAuthType();
    userAgent += " | PathInfo——" + request.getPathInfo();
    userAgent += " | Method——" + request.getMethod();
    userAgent += " | QueryString——" + request.getQueryString();
    Cookie[] cookies = request.getCookies();
    if (cookies != null) {
      for (Cookie cookie : cookies) {
        System.out.println(cookie.getName() + ":" + cookie.getValue());
      }
    }
    MyData data = new MyData();
    data.setId(id);
    data.setName(name);
    data.setOther(userAgent);
    return data;
  }

  @PostMapping(value = "/getPost", produces = {MediaType.APPLICATION_JSON_UTF8_VALUE})
  public MyData getPost(HttpServletRequest request) {

    int id = 0;
    if (request.getParameter("id") != null) {
      id = Integer.valueOf(request.getParameter("id"));
    }
    String name = request.getParameter("name");
    System.out.println(name + "," + id);
    MyData data = new MyData();
    data.setId(id);
    data.setName(name);
    return data;

  }
  /**
   * POST传JSON请求
   */
  @PostMapping(value = "/getPostJson", produces = {MediaType.APPLICATION_JSON_UTF8_VALUE})
  public MyData getPostJson(@RequestBody(required = true) MyData data) {
    System.out.println(data.getId());
    System.out.println(data.getName());
    return data;
  }
}

MyData.java

package com.example.demo.domain;

public class MyData {
  private int id;
  private String name;
  private String other;
  public int getId() {
    return id;
  }

  public void setId(int id) {
    this.id = id;
  }

  public String getName() {
    return name;
  }

  public void setName(String name) {
    this.name = name;
  }

  public String getOther() {
    return other;
  }

  public void setOther(String other) {
    this.other = other;
  }
}

(2)WebClient使用

DemoApplicationTests.java

package com.example.demo;

import com.example.demo.domain.MyData;
import org.junit.Test;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
import org.springframework.http.MediaType;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;
import org.springframework.web.reactive.function.BodyInserters;
import org.springframework.web.reactive.function.client.WebClient;
import reactor.core.publisher.Mono;

import java.time.Duration;
import java.time.temporal.ChronoUnit;

public class DemoApplicationTests {

  private WebClient webClient = WebClient.builder()
      .baseUrl("http://127.0.0.1:8080")
      .defaultHeader(HttpHeaders.USER_AGENT, "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko)")
      .defaultCookie("ACCESS_TOKEN", "test_token").build();

  @Test
  public void WebGetDemo() {

    try {
      Mono<MyData> resp = webClient.method(HttpMethod.GET).uri("api/getHeader?id={id}&name={name}", 123, "abc")
          .retrieve()
          .bodyToMono(MyData.class);
      MyData data = resp.block();
      System.out.println("WebGetDemo result----- " + data.getString());
    } catch (Exception e) {
      e.printStackTrace();
    }

  }

  @Test
  public void WebPostDemo() {
    MultiValueMap<String, String> formData = new LinkedMultiValueMap<>(2);
    formData.add("id", "456");
    formData.add("name", "xyz");

    Mono<MyData> response = webClient.method(HttpMethod.POST).uri("/api/getPost")
        .contentType(MediaType.APPLICATION_FORM_URLENCODED)
        .body(BodyInserters.fromFormData(formData))
        .retrieve()
        .bodyToMono(MyData.class).timeout(Duration.of(10, ChronoUnit.SECONDS));
    System.out.println(response);
    MyData data = response.block();
    System.out.println("WebPostDemo result----- " + data.getString());
  }

  @Test
  public void WebPostJson() {
    MyData requestData = new MyData();
    requestData.setId(789);
    requestData.setName("lmn");

    Mono<MyData> response = webClient.post().uri("/api/getPostJson")
        .contentType(MediaType.APPLICATION_JSON_UTF8)
        .syncBody(requestData)
        .retrieve()
        .bodyToMono(MyData.class).timeout(Duration.of(10, ChronoUnit.SECONDS));

    MyData data = response.block();
    System.out.println("WebPostJson result----- " + data.getString());
  }

}

看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注亿速云行业资讯频道,感谢您对亿速云的支持。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI