zoukankan      html  css  js  c++  java
  • WebFlux系列(五)WebClient基本应用

    #Java#Spring#WebFlux#WebClient#Reactor#

    WebClient如何调用远程接口

    视频讲解: https://www.bilibili.com/video/av82532764/

    WebfluxServerApplication.java
    package com.example.webfluxserver;
    
    import lombok.extern.log4j.Log4j2;
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.http.MediaType;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.RestController;
    import reactor.core.publisher.Flux;
    
    import java.time.Duration;
    
    @Log4j2
    @SpringBootApplication
    public class WebfluxServerApplication extends BaseApplication {
        public static void main(String[] args) {
            SpringApplication.run(WebfluxServerApplication.class, args);
        }
    
        @RestController
        class EmployeeController {
            @GetMapping(value = "employees",produces = MediaType.TEXT_EVENT_STREAM_VALUE)
            public Flux<Employee> findAll(){
                return Flux.range(1,5).map(val ->{
                    return list.stream().filter(employee -> employee.getId() ==val).findFirst().get();
                }).delayElements(Duration.ofMillis(1000));
            }
        }
    }
    WebfluxConsumerApplication.java
    package com.example.webfluxconsumer;
    
    import lombok.extern.log4j.Log4j2;
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.http.HttpStatus;
    import org.springframework.http.MediaType;
    import org.springframework.http.ResponseEntity;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.RestController;
    import org.springframework.web.client.RestTemplate;
    import org.springframework.web.reactive.function.client.ClientResponse;
    import org.springframework.web.reactive.function.client.WebClient;
    import reactor.core.publisher.Flux;
    import reactor.core.publisher.Mono;
    
    import java.util.Arrays;
    import java.util.List;
    
    @Log4j2
    @SpringBootApplication
    public class WebfluxConsumerApplication {
        public static void main(String[] args) {
            SpringApplication.run(WebfluxConsumerApplication.class, args);
        }
    
        @RestController
        class EmployeeController {
            @GetMapping(value = "employees", produces = MediaType.TEXT_EVENT_STREAM_VALUE)
            public Flux<Employee> findAll() {
                return WebClient.create("localhost:8080/employees").get().retrieve().bodyToFlux(Employee.class);
            }
        }
    }

    公众号,坚持每天3分钟视频学习

  • 相关阅读:
    java多线程详解(1)-多线程入门
    有关java中的hashCode问题
    java自动装箱和自动拆箱注意细节
    jquery选择器
    win10专业版激活密钥
    python3小例子:scrapy+mysql
    java List 等份截取
    七大查找算法
    十大经典排序算法
    jQuery.extend()方法
  • 原文地址:https://www.cnblogs.com/JavaWeiBianCheng/p/12165924.html
Copyright © 2011-2022 走看看