春季@jsonformat更改时区

发布于 2025-01-23 05:49:58 字数 458 浏览 0 评论 0原文

我将JSON发送到Spring应用程序,使用@jsonformat注释将其除外,然后将其返回给用户。但是,我的输入专门表示“ GMT”,但返回数据是“ UTC”。是否有更好/不同的方法可以正确注释此问题,以使时区通过?

请求身体

"startDate": "Sun, 22 May 2022 04:00:00 GMT"

对象注释

@JsonFormat(pattern = "EEE, dd MMM yyyy HH:mm:ss z")
private ZonedDateTime startDate;

返回数据

"startDate": "Sun, 22 May 2022 04:00:00 UTC",

I'm sending JSON to a spring app, de-serializing it using @JsonFormat annotations and then returning it to the user. However my input specifically denotes "GMT" but the return data is "UTC". Is there a better/different way to annotate this properly so the timezone comes through?

Request Body

"startDate": "Sun, 22 May 2022 04:00:00 GMT"

Object Annotation

@JsonFormat(pattern = "EEE, dd MMM yyyy HH:mm:ss z")
private ZonedDateTime startDate;

Return Data

"startDate": "Sun, 22 May 2022 04:00:00 UTC",

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

够钟 2025-01-30 05:49:58

添加时区到注释

@JsonFormat(pattern = "EEE, dd MMM yyyy HH:mm:ss z", timezone="GMT")
private ZonedDateTime startDate;

Added timezone to the annotation

@JsonFormat(pattern = "EEE, dd MMM yyyy HH:mm:ss z", timezone="GMT")
private ZonedDateTime startDate;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文