我希望我的控制器根据标准格式解析RequestParams和PathVariables中的日期.
是否可以在不单独注释每个@RequestParam的情况下设置应用程序范围的@DateTimeFormat?
最佳答案
您可以在控制器级别执行此操作.在控制器中添加@initBinder,它将根据给定的格式化程序格式化日期.
原文链接:https://www.f2er.com/spring/431351.html@InitBinder
public void initBinder(WebDataBinder binder) {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
dateFormat.setLenient(false);
// true passed to CustomDateEditor constructor means convert empty String to null
binder.registerCustomEditor(Date.class,new CustomDateEditor(dateFormat,true));
}