Reactive Programming: Spring WebFlux: How to build a chain of micro-service calls?
问题 Spring Boot Application: a @RestController receives the following payload: { "cartoon": "The Little Mermaid", "characterNames": ["Ariel", "Prince Eric", "Sebastian", "Flounder"] } I need to process it in the following way: Get the unique Id for each character name: make an HTTP call to "cartoon-characters" microservice, that returns ids by names Transform data received by the controller: replace character names with appropriate ids that were received on the previous step from "cartoon