2
我想使用spring webflux以反應式方式傳輸文件。
我的端點應該看起來像更具體什麼是對象的類型?如何使用spring webflux進行文件流式傳輸
@GetMapping("/file")
Flux<???> file() {
//Read file content into this ??? thing .
}
我想使用spring webflux以反應式方式傳輸文件。
我的端點應該看起來像更具體什麼是對象的類型?如何使用spring webflux進行文件流式傳輸
@GetMapping("/file")
Flux<???> file() {
//Read file content into this ??? thing .
}
你可以這樣返回Resource
實例:
@GetMapping("/file")
Mono<Resource> file() {
//Create a ClassPathResource, for example
}
注意,這個自動支持字節範圍的HTTP請求。