我希望浏览器在API
使用Spring Reactive
Mono
.
以下是我的示例程序,它每秒生成随机字符串并在浏览器上显示,但页面不加载任何新数据,它看起来像静态数据加载。
@RestController
public class LogTailerController {
@GetMapping(path = "/", produces = MediaType.TEXT_EVENT_STREAM_VALUE)
public Mono<String> feed() {
return Mono.just("foo-" + Math.random()).delayElement(Duration.ofSeconds(1));
}
}
pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
</dependency>