WebFlux系列(三) Server-Sent Events(续)
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> #编程#入门#java#spring#webflux#SSE#reactor# SSE数据结构 视频讲解: https://www.bilibili.com/video/av82297051/ 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.codec.ServerSentEvent; import org.springframework.web.bind.annotation.CrossOrigin; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; import