我需要将UTC区域中的日期/时间存储到MySQL数据库(DATETIME类型列)中。当用户输入日期时,它首先由JSF转换器转换为org.joda.time.DateTime
。
在将此日期插入MySQL数据库之前,再次需要将其转换为java.util.Date
- 感谢EclipseLink。
以下是转换器再次将org.joda.time.DateTime
转换为java.util.Date
,但实际上并不需要查看此转换器。
package joda.converter;
import java.util.Date;
import org.eclipse.persistence.mappings.DatabaseMapping;
import org.eclipse.persistence.mappings.converters.Converter;
import org.eclipse.persistence.sessions.Session;
import org.joda.time.DateTime;
import org.joda.time.DateTimeZone;
public final class JodaDateTimeConverter implements Converter
{
private static final long serialVersionUID = 1L;
@Override
public Object convertObjectValueToDataValue(Object objectValue, Session session)
{
return objectValue instanceof DateTime?((DateTime) objectValue).withZone(DateTimeZone.UTC).toDate():null;
}
@Override
public Object convertDataValueToObjectValue(Object dataValue, Session session)
{
return dataValue instanceof Date?new DateTime((Date) dataValue):null;
}
@Override
public boolean isMutable()
{
return true;
}
@Override
public void initialize(DatabaseMapping databaseMapping, Session session)
{
databaseMapping.getField().setType(java.util.Date.class);
}
}
在convertObjectValueToDataValue()
方法(第一个)中,收到的第一个参数 - objectValue
的值是JUD-Time在JSF转换器中转换的正确UTC日期/时间。
例如,如果我输入日期 - 02-Oct-2013 11:34:26 AM
,则objectValue
的值为 - 2013-10-02T06:04:26.000Z
。应将此日期/时间插入数据库。
但是当此表达式转换此值 - (DateTime) objectValue).withZone(DateTimeZone.UTC).toDate()
时,它再次被评估为2013-10-02 11:34:26.0
,并且该值将提供给不正确的数据库。
无论如何,如何将UTC区域设置为(DateTime) objectValue).withZone(DateTimeZone.UTC).toDate()
?
类型org.joda.time.DateTime
的属性在模型类中指定如下。
@Column(name = "discount_start_date", columnDefinition = "DATETIME")
@Converter(name = "dateTimeConverter", converterClass = JodaDateTimeConverter.class)
@Convert("dateTimeConverter")
private DateTime discountStartDate;
编辑: (以下JSF转换器按预期工作,上面的EclipseLink转换器保持不变 - 从BalusC的唯一answer到现在
这是我的JSF转换器。
package converter;
import java.util.TimeZone;
import javax.faces.application.FacesMessage;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.RequestScoped;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import javax.faces.convert.Converter;
import javax.faces.convert.ConverterException;
import org.joda.time.DateTime;
import org.joda.time.DateTimeZone;
import org.joda.time.format.DateTimeFormat;
import org.joda.time.format.DateTimeFormatter;
import util.Utility;
@ManagedBean
@RequestScoped
public final class DateTimeConverter implements Converter
{
@Override
public Object getAsObject(FacesContext context, UIComponent component, String value)
{
DateTime dateTime=null;
try
{
dateTime = DateTimeFormat.forPattern("dd-MMM-yyyy hh:mm:ss aa").withZone(DateTimeZone.forTimeZone(TimeZone.getTimeZone("IST"))).parseDateTime(value);
}
catch (IllegalArgumentException e)
{
throw new ConverterException(new FacesMessage(FacesMessage.SEVERITY_ERROR, "", Utility.getMessage("datetime.converter.error", DateTimeFormat.forPattern("dd-MMM-yyyy hh:mm:ss aa").print(DateTime.now().withZone(DateTimeZone.forID("Asia/Kolkata"))))), e);
}
catch(UnsupportedOperationException e)
{
throw new ConverterException(new FacesMessage(FacesMessage.SEVERITY_ERROR, "", Utility.getMessage("datetime.converter.error", DateTimeFormat.forPattern("dd-MMM-yyyy hh:mm:ss aa").print(DateTime.now().withZone(DateTimeZone.forID("Asia/Kolkata"))))), e);
}
return dateTime;
}
@Override
public String getAsString(FacesContext context, UIComponent component, Object value)
{
DateTimeFormatter dateTimeFormatter=DateTimeFormat.forPattern("dd-MMM-yyyy hh:mm:ss aa").withZone(DateTimeZone.forID("Asia/Kolkata")); //This zone will be tackled/handled later from the database to display.
return value instanceof DateTime?dateTimeFormatter.print((DateTime)value):null;
}
}
答案 0 :(得分:4)
导致您的具体问题,因为DateTime#toDate()
在转换为java.util.Date
期间未使用时区。它基本上返回new Date(millis)
,其中millis
是内部存储的DateTime
实例的纪元时间,完全如DateTime
javadoc所述,java.util.Date
constructor要求。
换句话说,withZone(DateTimeZone.UTC)
部分在这里完全没有效果。代码的行为与该部分不存在时的行为完全相同。这就解释了为什么你最终输入的时间。
从技术上讲,问题在于您的自定义JSF转换器,它从String
转换为DateTime
。该转换器显然没有考虑时区,并假设输入已经在GMT时区(默认情况下)。必须指示转换器输入处于IST时区。如果您使用标准java.util.Date
属性和标准JSF <f:convertDateTime>
,那么您可以通过将其timeZone
属性设置为IST
来解决此问题。
<h:inputText value="#{bean.date}">
<f:convertDateTime pattern="dd-MMM-yyyy hh:mm:ss a" locale="en" timeZone="IST" />
</h:inputText>
您的自定义JSF转换器应该完全相同:告诉API提供的String
处于IST时区,而不是让它假设它已经在GMT时区。您没有在任何地方显示自定义JSF转换器,因此很难提供确切的答案,但它应归结为以下启动示例:
String inputDateString = "02-Oct-2013 11:34:26 AM";
String inputDatePattern = "dd-MMM-yyyy hh:mm:ss a";
TimeZone inputTimeZone = TimeZone.getTimeZone("IST");
DateTime dateTime = DateTimeFormat
.forPattern(inputDatePattern)
.withZone(DateTimeZone.forTimeZone(inputTimeZone))
.parseDateTime(inputDateString);
生成的DateTime
实例最终将以毫秒为单位获得正确的内部纪元时间。