问题
查询某条数据,里面有个 effective_time 字段,数据库里保存的该条数据的 effective_time 的值是 2023-04-13
,但是使用postman调用接口,返回的确是 2023-04-12T16:00:00.000+00:00
,不仅格式不对,而且时间还慢了一天。
但是在 application.yml 中配置数据库连接的时候,确实指定了时区是shanghai(东八区)。
spring:
application:
name: demo
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://127.0.0.1:3306/itums?serverTimezone=Asia/Shanghai&characterEncoding=utf-8&useSSL=false
username: root
password: xxx
type: com.alibaba.druid.pool.DruidDataSource
解决方法
解决方法:使用@JsonFormat注解。
@JsonFormat注解是一个时间格式化注解,用于格式化时间。@JsonFormat默认情况下是timeZone为GMT(即标准时区),和北京时间相差8小时。
因此,在实体类的 effective_time 成员上加上 @JsonFormat 注解,指定格式和时区(东八区)。这样就能解决格式问题和时间问题了。
@Data
public class SystemAvailability implements Serializable {
//其他字段省略...
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
private Date effectiveTime;
}
标签:JsonFormat,00,Java,effective,MySQL,time,格式,date,注解
From: https://www.cnblogs.com/FengZeng666/p/17319348.html