SpringBoot中jackson日期格式化问题(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS not turning off timestamps)

本文涉及的产品
全局流量管理 GTM,标准版 1个月
云解析 DNS,旗舰版 1个月
公共DNS(含HTTPDNS解析),每月1000万次HTTP解析
简介: SpringBoot中jackson日期格式化问题(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS not turning off timestamps)

最近在做一个Springboot项目,中间遇到一个问题就是日期的格式化,每次实体类中的字段为Date类型时,从前端传到后台的时间格式老出错,属性字段上也加上@DateJsonFormat@JsonFormat注解了,但还是不行,后台报错,,在MVC环境中显示正常,到了springboot中就由2019-03-06 06:14:32 变成了 2020-02-19T06:14:32.005+0000,经查是由于Jackson未在springboot环境中配置对应的日期格式导致。

一、异常信息

org.springframework.web.client.RestClientException: Error while extracting response for type
[class com.imooc.entity.Product] and content type [application/json;charset=UTF-8];
 nested exception is org.springframework.http.converter.HttpMessageNotReadableException:
 JSON parse error: Cannot deserialize value of type `java.util.Date` from String "2020-02-19 21:33:16":
 not a valid representation (error: Failed to parse Date value '2020-02-19 21:33:16':
 Cannot parse date "2020-02-19 21:33:16": while it seems to fit format 'yyyy-MM-dd'T'HH:mm:ss.SSSZ',
 parsing fails (leniency? null)); nested exception is com.fasterxml.jackson.databind.exc.InvalidFormatException: 
Cannot deserialize value of type `java.util.Date` from String "2020-02-19 21:33:16": not a valid representation (error: Failed to parse Date value '2020-02-19 21:33:16': 
Cannot parse date "2020-02-19 21:33:16": while it seems to fit format 'yyyy-MM-dd'T'HH:mm:ss.SSSZ', parsing fails (leniency? null))
 at [Source: (PushbackInputStream); line: 1, column: 141] (through reference chain: com.imooc.entity.Product["createAt"])
    at org.springframework.web.client.HttpMessageConverterExtractor.extractData(HttpMessageConverterExtractor.java:115)
    at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:689)
    at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:644)
    at org.springframework.web.client.RestTemplate.postForObject(RestTemplate.java:399)
    at com.imooc.util.RestUtil.postJSON(RestUtil.java:31)
    at com.imooc.controller.ProductControllerTest.lambda$0(ProductControllerTest.java:59)
    at java.util.ArrayList.forEach(Unknown Source)

二、异常原因

主要问题就是实体类的Date转化Json过程出现错误。

2.1、Springboot默认使用的json解析框架是jackson框架

2.2、jackson解析框架在解析实体类里面是Date数据类型的数据时的默认格式是:UTC类型,即yyyy-MM-dd’T’HH:mm:ss.SSS 并且默认为+8时区,即时间基础上加8小时

请求数据格式为: 'yyyy-MM-dd HH:mm:ss',但是在接收到数据的时候,需要通过jackson把数据转化成Dto对象。jackson转化的时候,默认的时间格式是 'yyyy-MM-dd'T'HH:mm:ss.SSS’,所以就会出现上面的异常。

三、解决方案

方案一:将spring的jackson日期格式写在配置文件中即可

spring:

 jackson:

   date-format: yyyy-MM-dd HH:mm:ss

   time-zone: GMT+8

   serialization:

     write-dates-as-timestamps: false

spring:
  application:
    name: operation-service
    system: wisdomhome
  main:
    allow-bean-definition-overriding: true    
  profiles:
    active: local
  servlet:
    multipart:
      max-file-size: 1024MB
      max-request-size: 1024MB
  cloud:
    zookeeper:
      discovery:
        enabled: true
        register: true
        root: /immoc-service
      connectString: dev.soft.com:53200
  jackson:
    date-format: yyyy-MM-dd HH:mm:ss
    time-zone: GMT+8
    serialization:
      write-dates-as-timestamps: false

或者写成以下格式(主要取决于配置文件是yml, properties等什么格式的):

#日期格式化

spring.jackson.date-format=yyyy-MM-dd HH:mm:ss

spring.jackson.time-zone=GMT+8

spring.jackson.serialization.write-dates-as-timestamps=false

方案二:在实体Date类型的字段上使用@JsonFormat注解格式化日期(这个方法有时候可以,有时候不行)

此方案要注意 timezone 值的写法,不要在 “+”号两边留空格,如果加号两边有空格会导致解析失败的哦~~~

    /**
     * 创建时间
     */
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT + 8")
    private Date createTime;

方案三:通过下面方式取消timestamps形式

objectMapper.configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, false);

其他方案:

如果项目中使用json解析框架为fastjson框架,则可使用如下解决方法:在实体字段上使用@JsonFormat注解格式化日期

@JsonFormat(shape=JsonFormat.Shape.STRING, pattern="yyyy-MM-dd HH:mm:ss")

 

 

完结!

相关文章
|
JSON 安全 JavaScript
SpringBoot时间格式化
SpringBoot时间格式化
|
JSON Java 数据格式
SpringBoot 使用 jackson 格式化时间
在实际开发中我们经常会与时间打交道,那这就会涉及到一个时间格式转换的问题。接下来会介绍几种在SpirngBoot中如何对时间格式进行转换。
597 2
|
6月前
|
JSON Java 数据格式
nbcio-boot升级springboot、mybatis-plus和JSQLParser后的LocalDateTime日期json问题
nbcio-boot升级springboot、mybatis-plus和JSQLParser后的LocalDateTime日期json问题
70 0
|
11月前
|
前端开发 Java
springboot,get传日期格式转换
springboot,get传日期格式转换
70 0
|
JSON 前端开发 Java
SpringBoot中jackson日期格式化问题(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS not turning off timestamps)
SpringBoot中jackson日期格式化问题(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS not turning off timestamps)
246 0
|
JSON Java 数据格式
SpringBoot Jackson Date类型格式设置
SpringBoot Jackson Date类型格式设置 一、背景说明 在使用SpringBoot+SpringMVC时,默认采用Jackson包来进行JSON转换。 在返回Date类型的数据时,Jackson会以时间戳的形式返回,而实际场景往往需要以yyyy-MM-dd HH:mm:ss这类日期或时间格式返回。
|
安全 Java 关系型数据库
SpringBoot时间格式化的5种方法!(5)
SpringBoot时间格式化的5种方法!(5)
210 0
SpringBoot时间格式化的5种方法!(5)
|
Java
SpringBoot时间格式化的5种方法!(8)
SpringBoot时间格式化的5种方法!(8)
142 0
SpringBoot时间格式化的5种方法!(8)
|
Java 数据库 Spring
SpringBoot时间格式化的5种方法!(1)
SpringBoot时间格式化的5种方法!(1)
177 0
SpringBoot时间格式化的5种方法!(1)