使用thymeleaf框架,前台日期格式是字符串,后台不能以Date格式接收解决
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用thymeleaf框架,前台日期格式是字符串,后台不能以Date格式接收解决相关的知识,希望对你有一定的参考价值。
import org.springframework.beans.propertyeditors.CustomDateEditor;
import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.annotation.InitBinder;
import java.text.SimpleDateFormat;
import java.util.Date;
Spring MVC 框架
公共父类controller类(ParentController )添加以下方法
/**
* 前台日期格式转换为Date格式
* 日期格式:yyyy-MM-dd,第二个参数为是否为空 true代表可以为空
* @param binder
*/
@InitBinder
public void initBinder(WebDataBinder binder) {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
}
以上是关于使用thymeleaf框架,前台日期格式是字符串,后台不能以Date格式接收解决的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Thymeleaf 和/或 spring 表达式语言来转换字符串,例如“2018-02-21”转换为日期格式 dd/mm/yyyy(例如“21/02/2018”)