spring mvc从页面得到util.Date类型的数据

在控制类中加上

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

你可能感兴趣的:(spring mvc)