springboot关于mysql数据库date时间的坑

2022年6月5日09:06:15

默认存储是"yyyy-MM-dd’T’hh:mm:ss.SSSZ"类型的格式,如果想存储"yyyy-MM-dd HH:mm:ss"类型的时间,需要在实体类时间参数上面加上两行代码

 	@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")private Date time;

springboot关于mysql数据库date时间的坑

  • 作者:忆痕逐影
  • 原文链接:https://blog.csdn.net/cyunann/article/details/104903914
    更新时间:2022年6月5日09:06:15 ,共 207 字。