是否可以在 Spring MVC 控制器中处理不同的日期格式?
我知道设置这样的东西
@InitBinder
protected void initBinder(WebDataBinder binder) {
SimpleDateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
binder.registerCustomEditor(Date.class, new CustomDateEditor(
dateFormat, false));
}
我可以处理dd/MM/yyyy
格式,但是如果我还想解析yyyyMMddhhmmss
格式的日期怎么办?我应该在控制器中添加多个CustomDateEditor
s 吗?