我想使用 spring webflux 以反应方式流式传输文件。
我的端点应该看起来更具体什么是对象的类型?
@GetMapping("/file")
Flux<???> file() {
//Read file content into this ??? thing .
}
我想使用 spring webflux 以反应方式流式传输文件。
我的端点应该看起来更具体什么是对象的类型?
@GetMapping("/file")
Flux<???> file() {
//Read file content into this ??? thing .
}