1

我遇到了转换器的问题。在我的 xhtml 文件中,我有一个带有对象列表的 selectOneMenu,我想在我的 managedBean 中设置一个对象。

如果我的 managedBean 具有@SessionScoped,则 managedbean 中的对象被填充,但如果 managedeban 具有 @ViewScoped,则转换器永远不会使用并且我的对象为空。

如何解决这个问题?

XHTML:

<p:selectOneMenu value="#{rechercheBean.role}" converter="#{typConverter}">
    <f:selectItems id="item" value="#{typBean.roles}" var="r" itemLabel="#{r.valeur}" itemValue="#{r}" />
</p:selectOneMenu>

类型转换器:

public class TypConverter implements Converter{
    @EJB
    private TypFacadeLocal  TypBean;

    public Object getAsObject(FacesContext facesContext, UIComponent component, String submittedValue) {
        if (submittedValue.trim().equals("")) {
            return null;
        }
        else {
            try {
                Integer id = Integer.parseInt(submittedValue);
                Typ typ = new Typ();
                typ = TypBean.find(id);
                return typ;
            }
            catch (NumberFormatException exception) {
                throw new ConverterException(new FacesMessage(FacesMessage.SEVERITY_ERROR, "Conversion Error", "Typ non valide"));
            }
        }
    }

    public String getAsString(FacesContext facesContext, UIComponent component, Object value) {
        if (value == null || value.equals("")) {
            return "";
        }
        else {
            return String.valueOf(((Typ) value).getId());
        }
    }
}

发送很多

4

1 回答 1

-1

问题是组件 c:when。有了组件的属性渲染器,就没有问题了。

于 2012-09-19T15:22:28.317 回答