我有一个 Spring Flux 应用程序,有时我需要在后台执行一些繁重的任务,调用者(HTTP 请求)不需要等到该任务完成。
如果没有反应器,我可能只会使用Async注释,在不同的线程上执行该方法。使用 reactor,我不确定是否应该继续使用这种方法,或者是否已经有一个内置机制可以让我完成此操作。
例如,给定一个接受Resource对象的Controller :
@PostMapping("/create")
public Mono<Resource> create(@Valid @RequestBody Resource r) {
processor.run(r); // the caller should not wait for the resource to be processed
return repository.save(r);
}
还有一个处理器类:
@Async
void run(Resource r) {
WebClient webClient = WebClient.create("http://localhost:8080");
Mono<String> result = webClient.get()
.retrieve()
.bodyToMono(String.class);
String response = result.block(); //block for now
}
的 HTTP 调用者/create
不需要等到run
方法完成。