我遇到了一个我认为纯粹是UTC的代码中意外的夏令时问题。我正在使用Java 1.6,iBatis SQL映射器(2.3.3)和Oracle XE(Oracle 10.2的eval版本)和Oracle瘦驱动程序。
数据库包含表示电视广播时间表的表格。每个“资产”(程序)都有一个start_time和结束时间。这是相关的切片:
create table Asset
(
asset_id integer not null, -- The unique id of the Asset.
[...]
start_time timestamp, -- The start time.
end_time timestamp, -- The end time.
[...]
constraint asset_primary_key primary key (asset_id),
constraint asset_time check (end_time >= start_time)
);
oracle asset_time
约束正在针对那些跨越美国中央夏令时调整的节目,即2009年11月11日这个即将到来的星期天早上。
我有这个数据传输对象(日期是java.util.Dates):
public class Asset
{
protected Long asset_id;
[...]
protected Date start_time;
protected Date end_time;
public Date getStart_time() { return start_time; }
public Date getEnd_time() { return end_time; }
public void setStart_time(Date start_time) { this.start_time = start_time; }
public void setEnd_time(Date end_time) { this.end_time = end_time; }
[...]
}
在iBatis SQL map中,我有一个将Asset DTO插入Oracle Asset表的语句:
<insert id="Asset.insert" parameterClass="com.acme.Asset">
insert into Asset
( asset_id, [...] start_time, end_time )
values
( #asset_id#, [...] #start_time#, #end_time# )
</insert>
在Java方面,我已经通过这个预插入断言验证了我正在给iBatis正确的UTC日期输入,没有抛出:
System.err.println("Inserting asset " + program_id);
System.err.println(" "+asset.getStart_time_str()+"--"+asset.getEnd_time_str());
if ( !asset.getEnd_time().after(asset.getStart_time())) {
System.err.println("Invalid datetime range in asset.");
throw new AssertionError("Invalid datetime range in asset.");
}
在Oracle约束失败之前,上面的代码打印出来:
Inserting asset EP011453960004
2009-11-01T06:30:00Z--2009-11-01T07:00:00Z
我在美国中部时区,格林威治标准时间-5:00,所以这个节目从凌晨1:30开始,到凌晨2:00结束。夏令时的变化在凌晨2点发生,并将时钟恢复到凌晨1点。
iBatis报告Oracle约束失败(已编辑):
2009-10-30 22:58:42,238 [...] Executing Statement:
insert into Asset ( asset_id, [...] start_time, end_time )
values ( ?, [...] ?, ? )
2009-10-30 22:58:42,238 [...] Parameters:
[EP011453960004, [...] 2009-11-01 01:30:00.0, 2009-11-01 01:00:00.0]
2009-10-30 22:58:42,238 [..] Types:
[java.lang.Long, [...] java.sql.Timestamp, java.sql.Timestamp]
2009-10-30 22:58:42,285 [...] - Failed with a SQLException:
--- The error occurred in com/acme/data/dao/Asset-Write.xml.
--- The error occurred while applying a parameter map.
--- Check the Asset.insert-InlineParameterMap.
--- Check the statement (update failed).
--- Cause: java.sql.SQLException: ORA-02290: check constraint (ACME.ASSET_TIME)
violated
您会注意到,在Oracle方面,它看到start_time / end_time带有夏令时调整,因此iBatis映射逻辑或Oracle驱动程序中的某些内容没有达到我的预期。驱动程序是ojdbc14.jar,瘦驱动程序:
JDBCReadWrite.Driver = oracle.jdbc.OracleDriver
JDBCReadWrite.ConnectionURL = jdbc:oracle:thin:@localhost:1521:XE
确保此代码纯粹是UTC的正确方法是什么?
提前致谢!
答案 0 :(得分:6)
我有一个似乎可以解决问题的解决方案。尽管应用程序和数据库使用的类型存储了格林威治标准时间1970年1月1日午夜的时间偏移量,但JDBC规范要求对JVM的默认时区进行调整。 iBatis使用JDBC默认值映射日期。只要数据没有跨越夏令时边界,或者默认情况下机器或JVM设置为GMT,调整始终是对称的,因此无害。
作为实验,我将JVM默认时区切换为GMT:
TimeZone.setDefault(TimeZone.getTimeZone("UTC"));
这解决了这个问题,虽然是以一种非常严厉的方式(JVM中的其他代码可能不会期望这样)。
但是iBatis允许您在任何粒度级别覆盖默认类型处理。我编写了一个GMT保留类型处理程序,并为我所有的java.util.Dates注册了它:
<typeHandler callback="com.acme.GMTDateTypeHandler" javaType="java.util.Date"/>
我的类型处理程序如下所示:
public class GMTDateTypeHandler implements TypeHandlerCallback
{
@Override
public void setParameter(ParameterSetter setter, Object parameter)
throws SQLException
{
java.util.Date date = (java.util.Date) parameter;
if ( date == null )
setter.setNull(Types.TIMESTAMP);
else
{
Timestamp timestamp = new Timestamp(date.getTime());
Calendar calendar = Calendar.getInstance(TimeZone.getTimeZone("UTC"));
setter.setTimestamp(timestamp, calendar);
}
}
@Override
public Object getResult(ResultGetter getter) throws SQLException
{
Calendar calendar = Calendar.getInstance(TimeZone.getTimeZone("UTC"));
return getter.getTimestamp(calendar);
}
@Override
public Object valueOf(String s)
{
throw new UnsupportedOperationException(
"GMTDateTypeHandler.valueOf() is not supported.");
}
}
答案 1 :(得分:0)
通常,Oracle在存储数据时将日期/时间值从客户端时区转换为服务器时区。再往后看,再读一遍。
如果希望未更改地存储日期/时间值,则可能需要使用时区数据类型的变体“TIMESTAMP WITH TIME ZONE数据类型”,它允许您使用值存储时区。你可以在这里找到一些信息 Oracle SQL data type doc。只需搜索“with timezone”部分。