You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently ConversionServiceDeducer registers converters and formatters using only the bean instance. This means that we don't consider generics on the method. See #24891 (comment) for one example of where this has tripped us up.
We might be able to get the bean definition and call getResolvableType() to obtain the method defined generics. We'd then probably need our own adapters (similar to the ones in GenericConversionService) to expose the method generics.
The text was updated successfully, but these errors were encountered:
Currently
ConversionServiceDeducer
registers converters and formatters using only the bean instance. This means that we don't consider generics on the method. See #24891 (comment) for one example of where this has tripped us up.We might be able to get the bean definition and call
getResolvableType()
to obtain the method defined generics. We'd then probably need our own adapters (similar to the ones inGenericConversionService
) to expose the method generics.The text was updated successfully, but these errors were encountered: