Json timestamp转LocalDateTime报错JSON parse error: raw timestamp (1595952000000) not allowed for `java.time.LocalDateTime`: need additional information such as an offset or time-zone (see class Javadocs)

异常信息

Error while extracting response for type [class com.xxx.xxx.provider.user.entity.User] and content type [application/json]; nested exception is org.springframework.http.converter.HttpMessageNotReadableException:
JSON parse error: raw timestamp (1595952000000) not allowed for `java.time.LocalDateTime`: need additional information such as an offset or time-zone (see class Javadocs);
nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: raw timestamp (1595952000000) not allowed for `java.time.LocalDateTime`: need additional information such as an offset or time-zone
(see class Javadocs)\n at [Source: (PushbackInputStream); line: 1, column: 234] (through reference chain: com.xxx.xxx.provider.user.entity.User[\"birthday\"])

在数据库查询后,往调用方返回的序列化结果时,做了一层转化,把LocalDataTime转为时间戳,但是在内部feign调用时,接收方需要LocalDataTime,此时就出现这个异常.

解决办法加一个LocalDataTime序列化的配置类,在接受时再转一次.

复制代码
@Configuration
public class LocalDateTimeSerializerConfig {

    @Bean
    public Jackson2ObjectMapperBuilderCustomizer jackson2ObjectMapperBuilderCustomizer() {
        return builder -> {
            builder.serializerByType(LocalDateTime.class, new LocalDateTimeSerializer());
            builder.deserializerByType(LocalDateTime.class, new LocalDateTimeDeserializer());
        };
    }

    /**
     * 序列化
     */
    public static class LocalDateTimeSerializer extends JsonSerializer<LocalDateTime> {
        @Override
        public void serialize(LocalDateTime value, JsonGenerator gen, SerializerProvider serializers)
                throws IOException {
            if (value != null) {
                long timestamp = value.atZone(ZoneId.systemDefault()).toInstant().toEpochMilli();
                gen.writeNumber(timestamp);
            }
        }
    }

    /**
     * 反序列化
     */
    public static class LocalDateTimeDeserializer extends JsonDeserializer<LocalDateTime> {
        @Override
        public LocalDateTime deserialize(JsonParser p, DeserializationContext deserializationContext)
                throws IOException {
            long timestamp = p.getValueAsLong();
            if (timestamp > 0) {
                return LocalDateTime.ofInstant(Instant.ofEpochMilli(timestamp), ZoneId.systemDefault());
            } else {
                return null;
            }
        }
    }
}
复制代码

 

posted @   White_白  阅读(12524)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 零经验选手,Compose 一天开发一款小游戏!
· 通过 API 将Deepseek响应流式内容输出到前端
· AI Agent开发,如何调用三方的API Function,是通过提示词来发起调用的吗
点击右上角即可分享
微信分享提示