mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-22 14:09:25 +00:00
Prior to this commit, Spring Web would configure `HttpMessageConverter<?>` collections on clients like `RestTemplate` and on the server infrastructure, in `WebMvcConfigurationSupport`. This commit introduces a high-level construct for building and configuring ordered collections of converters. This includes: * configuration of well-known converters with classpath detection * configuration of shared converters, or client/server specific * configuration of custom converters See gh-33894