014 注解@InitBinder

Posted 最爱五仁月饼

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了014 注解@InitBinder相关的知识,希望对你有一定的参考价值。

一 . 概述

  在前面我们使用了类型转换服务完成了类型的转换,另外springmvc也提供了一种注解的方式来完成

    这种类型转换服务.


 

二 . 使用类型转换注解 @InteBinder  

@InitBinder
    public void dateBinder(WebDataBinder binder) {
        SimpleDateFormat sim = new SimpleDateFormat("yyyy-MM-dd");
        binder.registerCustomEditor(Date.class,new CustomDateEditor(sim, true));
    }

在我们的Controller之中,添加了这个类型转换器,就可以自动的完成从string到日期的转换了.


 

三总结

  虽然有这种简单的方式完成数据类型的转换,但是还是建议使用配置的方式完成.

以上是关于014 注解@InitBinder的主要内容,如果未能解决你的问题,请参考以下文章

@InitBinder 导致切面多次执行的问题

day014-反射注解

InitBinder

@initBinder数据转换器

014 Mui

@ControllerAdvice全局数据预处理