在控制器中加入如下代码:

@InitBinder
public void initBinder(ServletRequestDataBinder bin){
         SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
         CustomDateEditor cust = new CustomDateEditor(dsf,true);
         bin.registerCustomEditor(Date.class,cust);
}

这样注解之后,前端传过来的String类型的数据就可以在控制器方法参数中自动转化为Date类型数据:
@RequestMapping(value="/index2")
public String helloaction2(Date date){  //这里的参数自动将String转化为date类型
 
         return "index";
}