java.lang.IllegalStateException:DataBinder已使用ConversionService初始化

时间:2014-05-02 08:21:18

标签: java spring

当我在tms-servlet.xml中包含以下内容时,我收到以上错误消息

<mvc:annotation-driven />

与:

class TrainingInstructorController {
    private ConversionService conversionService;
    //Autowiring the ConversionService we declared in the context file above.

    @InitBinder
    public void registerConversionServices(WebDataBinder dataBinder) {
        dataBinder.setConversionService(conversionService);
    } 
}

删除mvc:annotation-driven将解决问题。

为什么会这样?有什么问题?

0 个答案:

没有答案