springboot遇到的问题02
- 问题1
@JsonFormat(patter="yyyy-MM-dd HH:mm:ss")
这种返回给前端,时间可能会相差8个小时,,,因为@JsonFormat
默认的timeZone
是 GMT (即标准时区),会造成输出少8个小时
修改为:@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
引用:https://www.cnblogs.com/nextgg/p/17585314.html