转换器不适用于@ViewScoped

时间:2012-08-13 13:52:57

标签: jsf null converter session-scope view-scope

我遇到转换器问题。在我的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>

typConverter:

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());
        }
    }
}

很多

1 个答案:

答案 0 :(得分:-1)

问题是组件c:何时。使用组件的属性渲染器,没有问题。