@Controller
public class MyController {
//匹配单个
@InitBinder
public void initData(WebDataBinder wdb){
wdb.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd"), true));
}
@RequestMapping(value="/first.do")
public String doFirst(Date birthday,int age){
return "/welcome.jsp";
}
}