SpringMVC在后台获取前台输入的时间

前台:

后台: @ModelAttribute Date date 

报404,类型不匹配

1.  springmvc中前台Date类型直接传到后台需要添加一个时间属性编辑器


@InitBinder

public void initBinder(ServletRequestDataBinder bin)

{

SimpleDateFormat sdf = new SimpleDateFormat ("yyyy-MM-dd HH:mm:ss");

CustomDateEditor cust =new CustomDateEditor (sdf,true);

bin.registerCustomEitor(Date.class,cust);

}


可以将上面的程序添加到后台的controller层

即可实现前台Date类型的参数直传


2.  加注解

  1. @DateTimeFormat(pattern="yyyy-MM-dd")  
  2. private Date dateRangeStart;// 通行日期范围开始  
 扩展:
@DateTimeFormat(pattern="yyyy-MM-dd") 可将形如1980-0-01的字符串转换到Date类
@NumberFormat(pattern="#,###.##") 可将形如4,500.00的字符串转换成long类型






你可能感兴趣的:(框架)