登录
首页 >  文章 >  java教程

LocalDate日期序列化报错:服务间接口调用日期参数如何正确处理?

时间:2024-12-28 18:30:55 439浏览 收藏

亲爱的编程学习爱好者,如果你点开了这篇文章,说明你对《LocalDate日期序列化报错:服务间接口调用日期参数如何正确处理?》很感兴趣。本篇文章就来给大家详细解析一下,主要介绍一下,希望所有认真读完的童鞋们,都有实质性的提高。

LocalDate日期序列化报错:服务间接口调用日期参数如何正确处理?

问题:接口接收参数序列化日期localdate的时候报错了?
问题详情:

前端向服务一接口传参,服务一调用服务二接口时,服务二接口接收日期参数时报序列化错误。

代码示例:

  • 前端传参:
    `<div class="code-block"><pre>public static <t> resjson<t> addxxx(@validated({addgroup.class}) @requestbody xxxdto xxxdto)</pre> </div>
  • 服务一调用服务二:
    `<div class="code-block"><pre>public static <t> string sendpost(t clazz, string url) {

      jsonobject jsonobject = jsonutil.parseobj(clazz);
      httpservletrequest request = servletutils.getrequest();
      string authorization = request.getheader(constants.authorization);
      return httputil.createpost(url)
              .header(constants.authorization, authorization)
              .body(jsonobject.tostring()).timeout(20000).execute().body();

    }</pre> </div>

  • 服务二接口:
    `<div class="code-block"><pre>public resjson getxxx(@requestbody xxxdto xxxdto)</pre> </div>

实体类字段:
`<div class="code-block"><pre>@notnull(message = "日期不能为空", groups = {addgroup.class})

@JsonSerialize(using = LocalDateSerializer.class)
@JsonDeserialize(using = LocalDateDeserializer.class)
private LocalDate<T&gt; replaceDate;</code></pre> </div> 

报错内容:
`<div class="code-block"><pre>org.springframework.http.converter.httpmessagenotreadableexception: json parse error: invalid value for year (valid values -999999999 - 999999999): 4665973755; nested exception is com.fasterxml.jackson.databind.jsonmappingexception: invalid value for year (valid values -999999999 - 999999999): 4665973755 (through reference chain: com.xxx.xxxdto["replacedate"])</pre> </div>

解决方案:

由于使用了jsr310规范,但序列化使用的是hutool工具包的序列化,导致序列化和反序列化的规范不一致。可以尝试使用fastjson来解决此问题。

替换如下代码:
`<div class="code-block"><pre>string json = json.tojsonstring(clazz);</pre> </div>

本篇关于《LocalDate日期序列化报错:服务间接口调用日期参数如何正确处理?》的介绍就到此结束啦,但是学无止境,想要了解学习更多关于文章的相关知识,请关注golang学习网公众号!

相关阅读
更多>
最新阅读
更多>
课程推荐
更多>