SpringMVC date binding

Add the following code to the controller to automatically bind the date parameter

@InitBinder
public void initData (WebDataBinder wdb) {
	wdb.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd"), true));
}

 

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326219333&siteId=291194637