Spring 实现异步流式接口
在 Spring 中实现异步流式接口通常使用 WebFlux 或 Spring MVC 的异步特性。
1. 使用 Spring WebFlux
Spring WebFlux 是 Spring 5 引入的响应式编程模型,支持异步非阻塞的流式数据处理。
1.1 添加依赖
在 pom.xml 中添加 WebFlux 的依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
</dependency>
1.2 创建异步流式接口
import org.springframework.http.MediaType;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.reactive.function.server.ServerResponse;
import reactor.core.publisher.Flux;
import java.time.Duration;
@Controller
public class StreamController {
@GetMapping(value = "/stream", produces = MediaType.APPLICATION_STREAM_JSON_VALUE)
public Flux<String> stream() {
return Flux.interval(Duration.ofSeconds(1))
.map(sequence -> "Current Time: " + System.currentTimeMillis());
}
}
1.3 启动应用
运行你的 Spring Boot 应用,并访问 http://localhost:8080/stream,你会看到每秒返回的时间戳。
2. 使用 Spring MVC 的异步特性
如果你希望使用 Spring MVC 的传统方式,仍然可以实现异步流式接口。
2.1 添加依赖
确保你的项目中有 Spring Web 的依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
2.2 创建异步流式接口
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.mvc.method.annotation.SseEmitter;
import java.util.concurrent.Executors;
@RestController
public class StreamController {
@GetMapping(value = "/stream", produces = MediaType.TEXT_EVENT_STREAM_VALUE)
public SseEmitter stream() {
SseEmitter emitter = new SseEmitter();
Executors.newSingleThreadExecutor().submit(() -> {
try {
while (true) {
emitter.send("Current Time: " + System.currentTimeMillis());
Thread.sleep(1000); // 1 second delay
}
} catch (Exception e) {
emitter.completeWithError(e);
}
});
return emitter;
}
}
2.3 启动应用
运行 Spring Boot 应用并访问 http://localhost:8080/stream,你将看到每秒发送的时间信息。
小结
WebFlux:适合需要非阻塞 I/O 的高并发场景,使用 Flux 实现流式数据。
Spring MVC:使用 SseEmitter 实现 Server-Sent Events (SSE),适合传统的 Servlet API。
根据你的具体需求选择合适的方式进行实现!