การเพิ่มคำตอบที่สมบูรณ์อยู่บนพื้นฐานและเป็นหนี้บุญคุณ divestoclimb กับคำใบ้จากฌอนหิน แค่อยากจะอธิบายโดยละเอียดเนื่องจากเป็นปัญหาที่พบบ่อยและวิธีแก้ปัญหาค่อนข้างสับสน
นี่คือการใช้ Hibernate 4.1.4 สุดท้ายแม้ว่าฉันจะสงสัยว่ามีอะไรหลังจาก 3.6 จะได้ผล
ขั้นแรกให้สร้าง UtcTimestampTypeDescriptor ของ divestoclimb
public class UtcTimestampTypeDescriptor extends TimestampTypeDescriptor {
public static final UtcTimestampTypeDescriptor INSTANCE = new UtcTimestampTypeDescriptor();
private static final TimeZone UTC = TimeZone.getTimeZone("UTC");
public <X> ValueBinder<X> getBinder(final JavaTypeDescriptor<X> javaTypeDescriptor) {
return new BasicBinder<X>( javaTypeDescriptor, this ) {
@Override
protected void doBind(PreparedStatement st, X value, int index, WrapperOptions options) throws SQLException {
st.setTimestamp( index, javaTypeDescriptor.unwrap( value, Timestamp.class, options ), Calendar.getInstance(UTC) );
}
};
}
public <X> ValueExtractor<X> getExtractor(final JavaTypeDescriptor<X> javaTypeDescriptor) {
return new BasicExtractor<X>( javaTypeDescriptor, this ) {
@Override
protected X doExtract(ResultSet rs, String name, WrapperOptions options) throws SQLException {
return javaTypeDescriptor.wrap( rs.getTimestamp( name, Calendar.getInstance(UTC) ), options );
}
};
}
}
จากนั้นสร้าง UtcTimestampType ซึ่งใช้ UtcTimestampTypeDescriptor แทน TimestampTypeDescriptor เป็น SqlTypeDescriptor ในการเรียก super constructor แต่จะมอบหมายทุกอย่างให้กับ TimestampType:
public class UtcTimestampType
extends AbstractSingleColumnStandardBasicType<Date>
implements VersionType<Date>, LiteralType<Date> {
public static final UtcTimestampType INSTANCE = new UtcTimestampType();
public UtcTimestampType() {
super( UtcTimestampTypeDescriptor.INSTANCE, JdbcTimestampTypeDescriptor.INSTANCE );
}
public String getName() {
return TimestampType.INSTANCE.getName();
}
@Override
public String[] getRegistrationKeys() {
return TimestampType.INSTANCE.getRegistrationKeys();
}
public Date next(Date current, SessionImplementor session) {
return TimestampType.INSTANCE.next(current, session);
}
public Date seed(SessionImplementor session) {
return TimestampType.INSTANCE.seed(session);
}
public Comparator<Date> getComparator() {
return TimestampType.INSTANCE.getComparator();
}
public String objectToSQLString(Date value, Dialect dialect) throws Exception {
return TimestampType.INSTANCE.objectToSQLString(value, dialect);
}
public Date fromStringValue(String xml) throws HibernateException {
return TimestampType.INSTANCE.fromStringValue(xml);
}
}
สุดท้ายเมื่อคุณเริ่มต้นการกำหนดค่าไฮเบอร์เนตของคุณให้ลงทะเบียน UtcTimestampType เป็นประเภทแทนที่:
configuration.registerTypeOverride(new UtcTimestampType());
ตอนนี้การประทับเวลาไม่ควรเกี่ยวข้องกับเขตเวลาของ JVM ระหว่างทางเข้าและออกจากฐานข้อมูล HTH.