gpt4 book ai didi

java - Spring MVC 设置全局 DateTimeFormat

转载 作者:搜寻专家 更新时间:2023-10-31 20:17:55 25 4
gpt4 key购买 nike

我希望我的 Controller 根据标准格式解析RequestParamsPathVariables 中的日期。

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

最佳答案

您可以在 Controller 级别执行此操作。在您的 Controller 中添加 @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));
}

关于java - Spring MVC 设置全局 DateTimeFormat,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37046993/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com