Spring Flux和异步注释

时间:2019-03-18 17:37:25

标签: java spring spring-webflux project-reactor spring-async

我有一个Spring Flux应用程序,在某个时候我需要在后台执行一些繁重的任务,调用者(一个HTTP请求)不需要等待该任务完成。

如果没有反应堆,我可能只使用Async批注,在另一个线程上执行该方法。 对于Reactor,我不确定是否应该继续使用该方法,或者不确定是否已有内置机制可以实现这一目标。

例如,给定一个 Controller 接受一个 Resource 对象:

@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);
}

和一个 Processor 类:

@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
}

/create的HTTP调用者无需等待run方法完成。

2 个答案:

答案 0 :(得分:1)

如果您正在寻找“即弃即用”模式的实现,则只需订阅发布者

@PostMapping("/create")
public Mono<Resource> create(@Valid @RequestBody Resource r) {
    run(r).subscribe();
    return repository.save(r);
}

Mono<Void> run(Resource r) {
    WebClient webClient = WebClient.create("http://localhost:8080");
    return webClient.get()
            .retrieve()
            .bodyToMono(String.class)
            .then();
}

如果发布者执行阻止操作,则应使用弹性或并行调度程序在其他线程上进行订阅。

答案 1 :(得分:0)

我进行了一些测试,我认为即使将subscribe()用作“发火并忘记”,也要等待请求完成,然后再将答案返回给Webbrowser或REST客户端(至少在我的简单测试中,它看起来像那)。因此,您必须执行类似@Async的操作,创建另一个线程:

@PostMapping("/create")
public Mono<Resource> create(@Valid @RequestBody Resource r) {
    return processor.run(r)
    .subscribeOn(Schedulers.elastic()) // put eveything above this line on another thread
    .doOnNext(string -> repository.save(r)); // persist "r", not changing it, though

}

和一个处理器类:

Mono<String> run(Resource r) { 
    WebClient webClient = WebClient.create("http://localhost:8080");
    return webClient.get()
           .retrieve()
           .bodyToMono(String.class);
}