1.后台(Date类型转成String类型)
//使用简单日期转换可以换成你想要的日期格式
SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/dd hh:mm:ss");
Date date = new Date();
System.out.println("date:"+date);//date:Wed Apr 24 23:33:42 CST 2019
//格式化时间
String createTime = sdf.format(date);
System.out.println("当前时间:"+createTime);//2019/04/24 11:33:42
2.前台传后台(json格式字符串的参数自动封装成Date类型)
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8")
private Date startTime;//任务开始时间
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8")
private Date endTime;//任务结束时间