who calls subscribe on Flux or Mono in reactive webapplication
问题 I am looking at some examples of reactive web applications and i am seeing them like this @RequestMapping(value = "/{id}", method = RequestMethod.GET) @ResponseBody public Mono<Person> findById(...) { return exampleService.findById(...); } @RequestMapping(method = RequestMethod.GET, produces = MediaType.TEXT_EVENT_STREAM_VALUE) @ResponseBody public Flux<Person> findAll() { Flux<Person> persons = exampleService.findAll(); return persons; } When i am reading about the Mono and Flux in the