webflux serialization has a problem to convert a List<String> to Flux<String>. Spring deserializes the list to a single string.
the processor could automatically detect multi wrapper with String type and generate Mono<List<String>> instead of Flux<String>.