gpt4 book ai didi

java - Spring myBatis 强制将 ZonedDateTime 保存在系统默认时区,如何防止?

转载 作者:行者123 更新时间:2023-12-02 01:14:21 24 4
gpt4 key购买 nike

我正在设置一个 API,该 API 以字符串形式接收日期时间以及日期时间所在的国家/地区。我有一个格式化程序,可以将这些字符串转换为 ZonedDateTime

假设我正在发送此 JSON:

{
"country": "ID",
"activeUntil":"2020-03-10 08:00:00"
}

ID 为印度尼西亚(时区“亚洲/ Jakarta ”UTC+7)

这是我的转换器

public static ZonedDateTime convertDatetimeStringToDatetime(String dtString, String country) throws ParseException {
DateFormat formatter = new SimpleDateFormat(("yyyy-MM-dd HH:mm:ss"));
formatter.setTimeZone(TimeZone.getTimeZone(CountryTimezones.timezoneMap.get(country)));
return formatter.parse(dtString).toInstant().atZone(ZoneId.of(CountryTimezones.timezoneMap.get(country)));
}

CountryTimezones.getTimeZone 只是一个将国家/地区短代码链接到其时区的 map 。

直到此时一切顺利,我的对象保存了我想要的值。

log.info(myObject.getActiveUntil().toString());
log.info(myObject.getActiveUntil().toLocalDateTime().toString());
log.info(myObject.getActiveUntil().withZoneSameInstant(ZoneId.of("UTC")).toString());

显示

2020-03-10T08:00+07:00[Asia/Jakarta]
2020-03-10T08:00
2020-03-10T01:00Z[UTC]

当我将日期保存到数据库中时,问题就出现了。我正在使用 mybatis,我的查询如下所示:

<insert id="insert">
INSERT INTO sometable (country, active_until, created_by)
VALUES (#{entity.country}, #{entity.activeUntil}, #{entity.createdBy})
</insert>

(为了清晰起见缩短)

保存的日期时间为“2020-03-10 09:00:00”

有关信息,我的位置时区是 utc+8,这意味着日期时间会自动转换为我的位置时区。

MyBatis版本<mybatis.version>3.4.5</mybatis.version>

我正在使用 MySQL 数据库

active_until 列的类型是 (MySQL) 日期时间。

这是查询日志:

==> Preparing: INSERT INTO sometable (country, active_until, created_by) VALUES (?, ?, ?)
==> Parameters: ID(String), 2020-03-10 09:00:00.0(Timestamp), Created by System(String)

如何更改此行为以强制保存我的所有 ZonedDateTime 以 UTC 格式

最佳答案

我通过将其添加到我的 Application.java 来修复它

@PostConstruct
public void init() {
TimeZone.setDefault(TimeZone.getTimeZone("UTC"));
System.out.println("Spring boot application running in UTC timezone :" + new Date());
}

myBatis 显然将应用程序的时区作为用于保存 ZonedDateTime 的时区。由于我没有设置它,应用程序时区使用系统默认值,这一定是我所在位置的时区。

关于java - Spring myBatis 强制将 ZonedDateTime 保存在系统默认时区,如何防止?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57667487/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com