springweb flux 服务器推送事件

Posted 全力以赴001

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springweb flux 服务器推送事件相关的知识,希望对你有一定的参考价值。

以前做服务器推送一般用轮询,后端主动给客户端推送不是很好解决。有时候也可以采用websocket

 

现在看了springwebflux,用它自带的方法做服务器推送方便多了.

 

代码如下:

import org.springframework.http.codec.ServerSentEvent;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import reactor.core.publisher.Flux;
import reactor.util.function.Tuples;

import java.time.Duration;
import java.util.concurrent.ThreadLocalRandom;

/**
 * 服务器推送事件
 * Created by mingge on 2018/5/4.
 */
@RestController
@RequestMapping("/sse")
public class SseController {
    @GetMapping("/randomNumbers")
    public Flux<ServerSentEvent<Integer>> randomNumbers() {
        return Flux.interval(Duration.ofSeconds(1))
                .map(seq -> Tuples.of(seq, ThreadLocalRandom.current().nextInt()))
                .map(data -> ServerSentEvent.<Integer>builder()
                        .event("random")
                        .id(Long.toString(data.getT1()))
                        .data(data.getT2())
                        .build());
    }
}

 

就定义普通的controller就可以了。

以上是关于springweb flux 服务器推送事件的主要内容,如果未能解决你的问题,请参考以下文章

如何在 spring web-flux 中发送电子邮件响应式

如何用 Flux (Reactor) 冲洗?

(12)自定义数据流(实战Docker事件推送的REST API)——响应式Spring的道法术器

react/flux- 子组件用户事件 - 一切都应该通过调度程序路由吗

跨商店的扩展事件发射器功能在 Flux 中发生冲突

何时使用 Mono<List<Object>> 以及何时使用 Flux<Object> 用于 RestController 方法