基本Joda时间转换器(该代码对于该线程的上下文中是绝对多余的):
@Named
@ApplicationScoped
@FacesConverter(forClass = DateTime.class)
public class DateTimeConverter implements Converter {
@Override
public Object getAsObject(FacesContext context, UIComponent component, String value) {
if (value == null || value.isEmpty()) {
return null;
}
try {
return DateTimeFormat.forPattern("dd-MMM-yyyy hh:mm:ss aa Z").parseDateTime(value).withZone(DateTimeZone.UTC);
} catch (IllegalArgumentException | UnsupportedOperationException e) {
throw new ConverterException(new FacesMessage(FacesMessage.SEVERITY_ERROR, null, "Message"), e);
}
}
@Override
public String getAsString(FacesContext context, UIComponent component, Object value) {
if (value == null) {
return "";
}
if (!(value instanceof DateTime)) {
throw new ConverterException("Error");
}
try {
return DateTimeFormat.forPattern("dd-MMM-yyyy hh:mm:ss aa Z").print(((DateTime) value).withZone(DateTimeZone.forID("zoneId")));
} catch (IllegalArgumentException e) {
throw new ConverterException("Error", e); // Not required.
}
}
}
为什么它不能与<p:calendar>
工作,除非/直到使用converter
属性显式指定?
<p:calendar converter="#{dateTimeConverter}" value="{bean.dateTimeValue}" .../>
与其他组件一样,它可以在不提及converter
属性的情况下工作,因为转换器使用
@FacesConverter(forClass = DateTime.class)
<p:calendar>
不支持此特性吗?
使用PrimeFaces 5.2和JSF 2.2.12。
基于5.2的CalendarRenderer#encodeEnd()
,使用CalendarUtils#getValueAsString()
获取输出值。如果有一个按类的转换器,它确实不会通过Application#createConverter(Class)
进行咨询。
51 //first ask the converter
52 if(calendar.getConverter() != null) {
53 return calendar.getConverter().getAsString(context, calendar, value);
54 }
55 //Use built-in converter
56 else {
57 SimpleDateFormat dateFormat = new SimpleDateFormat(calendar.calculatePattern(), calendar.calculateLocale(context));
58 dateFormat.setTimeZone(calendar.calculateTimeZone());
59
60 return dateFormat.format(value);
61 }
这证实了你观察到的行为。您最好创建一个问题报告给PrimeFaces人员,它要求添加一个instanceof Date
检查,在相反的情况下,从应用程序中按类获取转换器,如下所示:
Converter converter = context.getApplication().createConverter(value.getClass());
if (converter != null) {
return converter.getAsString(context, calendar, value);
}
else {
throw new IllegalArgumentException(value.getClass());
}
考虑到Java8的java.time
API的使用越来越多,这确实是有意义的。顺便说一下,在CalendarRenderer
和CalendarUtils
中还有其他一些地方可以/应该实现(并且他们实际上执行instanceof
检查,但不按类将其委托给转换器,如果有的话)。