之前作服务器推送通常用轮询,后端主动给客户端推送不是很好解决。有时候也能够采用websocketjava
如今看了springwebflux,用它自带的方法作服务器推送方便多了.react
代码以下:web
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就能够了。spring