Splitting a WebClient Post of a Streaming Flux into JSON Arrays
问题 I am using a third-party REST controller which accepts an array of JSON objects and returns a single object response. When I POST from a WebClient using a limited Flux the code works (I assume, because the Flux completes). However, when the Flux is potentially unlimited, how do I; POST in chunks of arrays? Capture the response, per POSTed array? Stop the transmission of the Flux ? Here is my bean; public class Car implements Serializable { Long id; public Car() {} public Car(Long id) { this