You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since SPR-15415 and SPR-15435, the HandlerStrategies and its companion builder are now using the new CodecConfigurer infrastructure to configure codecs in a cross-cutting way.
Boot should not look for message readers and writers anymore in the context, nor Supplier<CodecConfigurer> which would be too abstract. Instead, we should look for any specific instance of HandlerStrategies.Builder provided by the user or create a default one.
The text was updated successfully, but these errors were encountered:
This commit adds new reference documentation sections about WebFlux
support in Spring Boot:
* Support for multiple HTTP servers (gh-8403)
* `CodecCustomizer` and JSON codecs (gh-8897, gh-9166)
* `WebClient.Builder` auto-configuration (gh-9522)
* Tests with `@WebFluxTest` (gh-8401)
* `WebTestClient` auto-configuration (gh-8399)
* Support for Thymeleafi and Mustache templating (gh-8124, gh-8648)
* Choose another HTTP server with WebFlux (closesgh-9690)
Since SPR-15415 and SPR-15435, the
HandlerStrategies
and its companion builder are now using the newCodecConfigurer
infrastructure to configure codecs in a cross-cutting way.Boot should not look for message readers and writers anymore in the context, nor
Supplier<CodecConfigurer>
which would be too abstract. Instead, we should look for any specific instance ofHandlerStrategies.Builder
provided by the user or create a default one.The text was updated successfully, but these errors were encountered: