`

SpringMVC日期绑定

阅读更多

在controller中添加以下代码自动绑定日期参数

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

 

0
0
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics