mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-27 01:19:02 +00:00
This commit fixes the `configureMessageConverters` and `configureMessageConvertersList` behavior. `configureMessageConverters` was not executing consumers in their order of registration (but in the reverse order). `configureMessageConvertersList` was not executing multiple consumers and was instead executing the first consumer multiple times. This commit fixes both issues. Fixes gh-36332