@JsonFormat(pattern = “yyyy-MM-dd HH:mm:ss”)
放在实体类date 类型变量上import com.fasterxml.jackson.annotation.JsonFormat;
前端接收时是对应格式
@InitBinder
public void initBinder(WebDataBinder binder) {
SimpleDateFormat dateFormat = new SimpleDateFormat(“yyyy-MM-dd HH:mm:ss”);
dateFormat.setLenient(false);//是否严格解析时间 false则严格解析 true宽松解析
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
}
前端传date数据到controller时 为空会报错 在controller 中加入这个方法