mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
b59dca9c7f
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