我在这里按照示例进行操作。我的 applicationContext 具有以下内容:
<bean id="conversionService"
class="org.springframework.context.support.ConversionServiceFactoryBean">
<property name="converters">
<set>
<bean class="org.mypackage.MyFilterConverter"/>
</set>
</property>
</bean>
我的转换器如下所示:
public class MyFilterConverter implements Converter<String, HashMap<String, List<MyClass>>> { ...
我的问题:当我
@Autowired
private ConversionService conversionService;
并尝试使用它,conversionService 只有默认的,没有 MyFilterConverter。
我跟随堆栈跟踪到
GenericConversionService.addConverter(GenericConverter converter)
当我从这个电话回来时,我的转换器没有被添加。
有任何想法吗?
谢谢
——拉帕