mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-17 16:39:29 +00:00
As of #33894, we introduced a new `HttpMessageConverters` API. While this achieved our goal of focusing converters classpath detection in a single place and avoiding waste, a single `HttpMessageConverters` instance for both client and server added more complexity for developers. This commit aligns the API here with the WebFlux `CodecsConfigurer` to opt for a client/server flavor as the first step in the builder. While this make the sharing of converter instances between server and client impossible, this allows for a simpler API and separates concerns. Closes gh-35187