springboot在接收时间类型的时候,报Failed to convert value of type 'java.lang.String' to required type 'java.util.Date'的错误,应该怎么解决呢?
错误说明:
该错误的意思是 前台传递 string类型的时间数据,后台使用Date类型去接收,结果就报错了。
解决方案:
springboot要解决这个问题很简单,在接收的字段上面,添加下面的注解 就OK
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
private Date startTime;