将SelectManyCheckbox与对象列表一起使用

时间:2013-12-06 08:15:42

标签: jsf jsf-2 converter selectmanycheckbox

我试图创建一个JSF页面,让用户选择X量的成分,然后将选定的成分保存到列表中。

Ingredient是一个具有两个值的对象,String IngredientName和int ingredientPrice。

我想要做的是在IngredientList(动态大小)中为每个成分创建1个selectItem,然后将所选项目保存到另一个成分列表中。

我尝试过多种不同的方式但是我得到了分类广播例外或者根本没有显示复选框。

我的豆子:

@ManagedBean
@SessionScoped
public class ManagedIngredientsBean {

@EJB
IngredientBean iBean;

private List<Ingredient> ingredientList;
private List<Ingredient> checkedOptions;
private List<SelectItem> selectList;

public ManagedIngredientsBean() {

}


public String createNew(){

    ingredientList = iBean.getAllIngredients();
    selectList = new ArrayList<SelectItem>(ingredientList.size());
    for(Ingredient i : ingredientList){
        selectList.add(new SelectItem(i.getIngredientName()));
    }

    return "createnew.xhtml";
}

public List<SelectItem> getSelectList() {
    return selectList;
}

public void setSelectList(List<SelectItem> selectList) {
    this.selectList = selectList;
}

public List<Ingredient> getCheckedOptions() {
    return checkedOptions;
}

public void setCheckedOptions(List<Ingredient> checkedOptions) {
    this.checkedOptions = checkedOptions;
}

public List<Ingredient> getIngredientList() {
    return ingredientList;
}

public void setIngredientList(List<Ingredient> ingredientList) {
    this.ingredientList = ingredientList;
}

@FacesConverter(value="userConverter")
public static class UserConverter implements Converter {
    public Object getAsObject(FacesContext facesContext,
                              UIComponent component, String value) {
        return value;
    }

    public String getAsString(FacesContext facesContext,
                              UIComponent component, Object o) {
        Ingredient i = (Ingredient) o;
        return i.getIngredientName();

    }
}
}

IngredientBean用于从持久性数据库中获取Ingredient项并将其作为列表返回:

@Stateless(name = "IngredientEJB")
public class IngredientBean {

    EntityManagerFactory entFactory;
    EntityManager em;

    public IngredientBean() {
        entFactory = Persistence.createEntityManagerFactory("NewPersistenceUnit");
        em = entFactory.createEntityManager();
    }

    public List<Ingredient> getAllIngredients(){
        TypedQuery<Ingredient> ingQuery = em.createQuery("SELECT i FROM Ingredient i", Ingredient.class);
        List<Ingredient> iList =  ingQuery.getResultList();

        return iList;

    }
}

我的JSF页面:

<!DOCTYPE html
        PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://xmlns.jcp.org/jsf/core">

<h:head>
    <title>Create New Order</title>
</h:head>

<h:body>
    <h:form>
        <h:selectManyCheckbox value = "#{managedIngredientsBean.checkedOptions}">
                <f:converter converterId="userConverter"/>
                <f:selectItem value = "#{managedIngredientsBean.selectList}" var = "item" itemLabel = "#{item.getIngredientName()}" itemValue = "#{item}"/>
        </h:selectManyCheckbox>
    </h:form>

</h:body>

</html>

我可能遗漏了一些显而易见的东西,或者只是误解了如何使用selectManyCheckbox元素,但我完全坚持如何解决这个问题。感谢我应该如何实现这一点的任何答案。 :)

编辑:忘记提及,托管bean中的createNew()方法在前一个JSF页面中调用,并重定向到这个。

1 个答案:

答案 0 :(得分:2)

你的转换器坏了。

首先,它必须是一个bean,所以不能是static class

第二,它“应该”是对称的:

x.equals(c.getAsObject(ctx, comp, c.getAsString(ctx, component, x)));“应该”是真的。

@FacesConverter(value="userConverter")
public class UserConverter implements Converter 
{
    public Object getAsObject(FacesContext facesContext, UIComponent component, String value) 
    {
        return database.loadIngredientByUniqueValue(value);
    }

    public String getAsString(FacesContext facesContext,UIComponent component, Object o) 
    {
        Ingredient i = (Ingredient) o;
        return i.getSomeUniqueValue();
    }
}