sringmvc接收日期参数
Posted sh-0131
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sringmvc接收日期参数相关的知识,希望对你有一定的参考价值。
@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")
以上是关于sringmvc接收日期参数的主要内容,如果未能解决你的问题,请参考以下文章