自定义日历转换器无法获取日历属性

时间:2012-04-16 09:56:29

标签: java jsf richfaces

我有以下JSF:

<rich:calendar id="startDate"
                        value="#{myBean.startDate}" defaultTime="00:00"
                        disabled="#{myBean.disabled}"
                        popup="true" required="true" 
                        showWeeksBar="false"
                        dayDisableFunction="isDayEnabled"
                        dayClassFunction="getDisabledStyle"
                        requiredMessage="#{msg.errorStartDateNull}"
                        datePattern="#{myBean.datePattern}"
                        showApplyButton="false" cellWidth="24px" cellHeight="22px" todayControlMode="hidden"
                        style="width:1000px"
                        timeZone="#{myBean.defaultTimeZone}"
                        styleClass="noToday" showFooter="false" converter="calendarConverter" immediate="true">

这是我的转换器:

@FacesConverter("calendarConverter")
public class CalendarConverter extends DateTimeConverter
{
    @Override
    public Object getAsObject(FacesContext context, UIComponent component, String value)
    {
        Date calDate = (Date) component.getAttributes().get("currentDate");

        if (calDate instanceof Date) {
            return super.getAsObject(context, component, value);
        }
        else {
            throw new ConverterException(new FacesMessage("Invalid Date Format"));
        }
    }

    @Override
    public String getAsString(FacesContext context, UIComponent component, Object value)
    {
        return super.getAsString(context, component, value);
    }
}

我需要检查日历上的currentDate属性,但是当我将immediate =“true”属性应用于我的日历组件时,它为null。如果我删除了imediate属性,我的转换器永远不会被调用(JSF似乎正在使用它自己的转换)并将它自己的错误消息发送到屏幕:

java.lang.NumberFormatException: For input string: "2012asd" 

当currentDate属性不是日期时,如何返回自定义错误消息? (它已被篡改日期firefox插件篡改)

更新

在提交表单时,我已经为转换器提供了一个构造函数,以查看它是否正在进入(删除了immediate = true)。它进入构造函数但仍未调用我的getAsObject方法。

public CalendarConverter()
{
    super();
}

由于

1 个答案:

答案 0 :(得分:0)

您可以通过在web.xml文件中添加<error-page>来处理异常。

<error-page>
    <exception-type>java.lang.Exception</exception-type>
    <location>/errorpage.html</location>
</error-page>

这将为任何Exception实例显示errorpage.html。

此链接也可以提供更多信息。  http://docs.oracle.com/cd/B32110_01/web.1013/b25947/web_val.htm

希望这会对你有所帮助