1. 程式人生 > >spring mvc在接收資料時包含日期格式的資料,報404

spring mvc在接收資料時包含日期格式的資料,報404

@InitBinder  
	public void initBinder(WebDataBinder binder) {  
	    SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");  
	    dateFormat.setLenient(false);  
	    binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));  
	}

springmvc不支援日期格式引數傳遞,需要在controller里加如上述程式碼,註冊日期格式轉換器