欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

记一次jackson 时间转换格式的异常.

程序员文章站 2022-06-01 08:27:32
...

记一次jackson 时间转换格式的异常.

`feign.codec.DecodeException: 

Error while extracting response for type [xin.lichen.common.response.ResultBody<com.baomidou.mybatisplus.extension.plugins.pagination.Page<xin.lichen.system.client.model.entity.SystemApp>>]

 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 "2019-11-24T19:56:57.000+0000": expected format "yyyy-MM-dd HH:mm:ss";

 nested exception is com.fasterxml.jackson.databind.exc.InvalidFormatException: 

Cannot deserialize value of type java.util.Date from String "2019-11-24T19:56:57.000+0000": expected format "yyyy-MM-dd HH:mm:ss"`

这是我从控制台复制出来的报错信息 . 主要部分如下

`feign.codec.DecodeException: 

Error while extracting response for type `

我也问了度娘很久都说是实体类上加注解. 但是我这边是有的.(关于时间格式的问题可以看我另一篇文章)

回到正题.主要异常部分.度娘搜一下是有解决方法的.在这里插入代码片
记一次jackson 时间转换格式的异常.

相关标签: jackson json