标签:date类 att editor omd 格式 接收 str 图片 custom
@RequestMapping("toDate.do") public String todate(Date date) { return "login"; } @InitBinder public void initBinder(ServletRequestDataBinder binder){ //只要网页中传来的数据格式为yyyy-MM-dd 就会转化为Date类型 binder.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd"), true)); }
@DateTimeFormat(pattern="yyyy-MM-dd")
标签:date类 att editor omd 格式 接收 str 图片 custom
原文地址:https://www.cnblogs.com/sh-0131/p/11455864.html