我将Spring 3.2应用程序升级到Spring 4.2,并发现在4.2.0中删除了FormattingConversionServiceFactoryBean的installFormatters()方法的困难方法(我将我的maven POM升级到当前最新版本,4.2。 6.RELEASE)。
所以,我有这个课程:
public class ApplicationFormattingConversionServiceFactoryBean extends FormattingConversionServiceFactoryBean {
@Override
protected void installFormatters(FormatterRegistry registry) {
super.setRegisterDefaultFormatters(true);
registry.addFormatterForFieldAnnotation(new AnnotationFormatterFactory1());
registry.addFormatterForFieldAnnotation(new AnnotationFormatterFactory2());
// more of the same
}
}
这里有一条简单的升级路径吗?
杰森