We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
webflux serialization has a problem to convert a List<String> to Flux<String>. Spring deserializes the list to a single string.
List<String>
Flux<String>
the processor could automatically detect multi wrapper with String type and generate Mono<List<String>> instead of Flux<String>.
Mono<List<String>>
The text was updated successfully, but these errors were encountered:
Flux seems more correct than Mono<List>. do you have an example?
Sorry, something went wrong.
Can't remember exactly, i guess it is about spring-projects/spring-framework#22662
No branches or pull requests
webflux serialization has a problem to convert a
List<String>
toFlux<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 ofFlux<String>
.The text was updated successfully, but these errors were encountered: