@JsonFormat(pattern=“yyyy-MM-dd HH:mm:ss“,timezone=“GMT+8“)
程序员文章站
2022-07-10 20:50:32
java特殊时间批量转化数据返回出现2020-12-10T04:01:49.000+0000特殊时间,只需要在SpringBoot的配置文件里添加如下代码即可1.application.ymlspring: jackson: date-format: yyyy-MM-dd HH:mm:ss time-zone: GMT+8 serialization: #格式化输出 indent_output: true...
java特殊时间批量转化
数据返回出现2020-12-10T04:01:49.000+0000特殊时间,只需要在SpringBoot的配置文件里添加如下代码即可
1.application.yml
spring:
jackson:
date-format: yyyy-MM-dd HH:mm:ss
time-zone: GMT+8
serialization:
#格式化输出
indent_output: true
#忽略无法转换的对象
fail_on_empty_beans: false
2.application.properties
spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
spring.jackson.time-zone=GMT+8
spring.jackson.serialization.indent_output=true
spring.jackson.serialization.fail_on_empty_beans=false
3.类中的单独变量设置
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
public Date addtime;
本文地址:https://blog.csdn.net/weixin_43938004/article/details/110959041
上一篇: Java语言实现自动关机程序