TAO的gravatar头像
TAO 2015-04-14 22:59:39

spring mvc如何把html表单数据绑定为java Date,List对象类型?

请教spring mvc的数据绑定表单问题,像struts2那样的机制一样 

所有回答列表(2)
偷颗菜抱回家的gravatar头像
偷颗菜抱回家  LV14 2015年4月15日

controller里面

// 数据绑定
    @InitBinder
    public void initBinder(WebDataBinder binder) {
        SimpleDateFormat dateTimeFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        binder.registerCustomEditor(Date.class, new CustomDateEditor(dateTimeFormat, true));
    }

wentao的gravatar头像
wentao  LV24 2015年4月15日

正解

顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友