My spring boot application is a none web application, and spring boot will not auto create the ConversionService bean (which class is WebConversionService), so I need to manually create one. The tests ...
I'd like to define multiple Spring Converter<S, T> implementations (with different generic parameters) in a single @Mapper annotated interface. However, due to type erasure, it is currently not ...