一、关于接收前端传递的日期参数的问题:
前提:
Date类型的属性上添加了以下注解:
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JSONField(format = "yyyy-MM-dd")
1、java.sql.date:空字符串解析报错,正常日期格式字符串没问题;
2、java.util.date:空字符串解析没问题,正常日期格式字符串用于查询时报错;
二、方案:
1、Controller层添加以下方法,自定义解析参数(只在该Controller层生效)
@InitBinder
public void initBinder(WebDataBinder binder){
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
// spring提供的日期解析器(格式化,是否允许为空)选择true则将空字符串解析为null
CustomDateEditor customDateEditor = new CustomDateEditor(simpleDateFormat, true);
// 为Date类型的属性注册解析器
binder.registerCustomEditor(Date.class, customDateEditor);
}