这似乎是一个常见问题,所以也许我错过了一些明显的东西。使用乔达时间,我想用时区保留日期。如果我不使用 JPA,我会想做这样的事情来保存和检索时间戳:
create table test_dates
(
zone varchar(50),
ts_with_time_zone timestamp with time zone
);
insert into test_dates values ('UTC', '2012-08-12 12:34:56 UTC');
insert into test_dates values ('MST', '2012-08-12 05:34:56 MST');
select 'UTC in MST', ts_with_time_zone at time zone 'MST'
from test_dates where zone = 'UTC';
那么,如何使用Joda Time,JPA,EclipseLink和Postgres保存和检索指定时区的时间戳?
我已经看到了使用转换器的答案,但我不确定您将如何指定或使用时区。当然,我可以获取 UTC 时间并自己转换它,但这违背了拥有"时区"列的目的。这可能吗?
理想的解决方案是EclipseLink处理JodaTime类似于休眠。
您可以自定义 PostgreSQLPlatform,以添加对通过 JDBC 存储时区的支持。 您的 JDBC 驱动程序必须支持时区(最有可能通过自定义类型或日历 API)。
EclipseLink 确实在 Oracle 上支持时区,因此如果数据库和 JDBC 驱动程序支持,应该也可以扩展时区的 PostgreSQLPlatform。
您不保存时区。您只需使用输入字符串中指定的时区保存时间戳即可。时区将不会保存。
select '2012-08-12 12:34:56 UTC'::timestamp with time zone;
timestamptz
------------------------
2012-08-12 09:34:56-03
select '2012-08-12 05:34:56 MST'::timestamp with time zone;
timestamptz
------------------------
2012-08-12 09:34:56-03
时区将是数据库时区。
select now()::timestamp with time zone;
now
-------------------------------
2012-12-10 12:26:16.318484-02