@JsonFormat(pattern=“yyyy-MM-dd HH:mm:ss“,timezone=“GMT+8“)

时间:2025-04-03 11:59:20

java特殊时间批量转化

数据返回出现2020-12-10T04:01:49.000+0000特殊时间,只需要在SpringBoot的配置文件里添加如下代码即可

spring:
  jackson:
      date-format: yyyy-MM-dd HH:mm:ss
      time-zone: GMT+8
      serialization:
          #格式化输出
          indent_output: true
          #忽略无法转换的对象
          fail_on_empty_beans: false

-format=yyyy-MM-dd HH:mm:ss
-zone=GMT+8
.indent_output=true
.fail_on_empty_beans=false

3.类中的单独变量设置

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