Apply codecs auto-configuration to webflux server and webclient
See original GitHub issueFor Spring MVC, the HttpMessageConvertersAutoConfiguration configures the appropriate message converters for the server and the client (RestTemplate).
We should do the same for WebFlux, using ServerCodecConfigurer and ClientCodecConfigurer.
Issue Analytics
- State:
- Created 6 years ago
- Reactions:4
- Comments:6 (4 by maintainers)
Top Results From Across the Web
34. Calling REST Services with 'WebClient' - Spring
Finally, you can fall back to the original API and use WebClient.create() . In that case, no auto-configuration or WebClientCustomizer is applied.
Read more >Reactive WebClient - Medium
Spring WebFlux provides the reactive WebClient to make asynchronous api calls. It is fully non-blocking. Things I like about WebClient is it integrates...
Read more >Spring Boot WebClient Example (2022) - TechGeekNext
In this tutorial, we'll create spring boot application with WebClient for communication between two services. We will utilize our previous example Spring Boot ......
Read more >Spring Boot - ObjectMapper - Gitter
2) Can you use any other customization method described in ... /java/org/springframework/boot/autoconfigure/http/codec/CodecsAutoConfiguration.java#L58-L66.
Read more >No qualifying bean of type 'org.springframework.boot.web ...
This behavior has been chosen because many Spring developers add spring-boot-starter-webflux to their Spring MVC application to use the reactive ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Probably the same issue
Hi @bclozel
I did what I saw in the other ticket that started this and added:
to my mock setup.