java – Spring MVC设置全局DateTimeFormat

前端之家收集整理的这篇文章主要介绍了java – Spring MVC设置全局DateTimeFormat前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我希望我的控制器根据标准格式解析RequestParams和PathVariables中的日期.

是否可以在不单独注释每个@RequestParam的情况下设置应用程序范围的@DateTimeFormat?

最佳答案
您可以在控制器级别执行此操作.在控制器中添加@initBinder,它将根据给定的格式化程序格式化日期.

@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));
}
原文链接:https://www.f2er.com/spring/431351.html

猜你在找的Spring相关文章