-
Notifications
You must be signed in to change notification settings - Fork 565
Open
Labels
status: waiting-for-triageAn issue we've not yet triagedAn issue we've not yet triaged
Description
Right now the RepositoryRestMvcConfiguration uses the defaultMessageConverters property :
Line 776 in 56c271d
er.setMessageConverters(defaultMessageConverters.get()); |
which is lazily loaded to all beans matching type HttpMessageConverter
Line 291 in 56c271d
this.defaultMessageConverters = beansOfType(context, HttpMessageConverter.class); |
However there is also a bean defined:
Line 798 in 56c271d
public List<HttpMessageConverter<?>> defaultMessageConverters( |
that I think should be used instead. The property isn't necessary and circumvents application wide customization of the message converters present in the bean:
Line 828 in 56c271d
configurerDelegate.get().configureHttpMessageConverters(messageConverters); |
Metadata
Metadata
Assignees
Labels
status: waiting-for-triageAn issue we've not yet triagedAn issue we've not yet triaged