1

我无法从托管 bean 获得列表以显示在 JSF 的数据表中。

当我调试它时,列表在调用 bean 上的方法时只有一个元素,但页面在数据表中没有显示任何元素。

托管 bean 是:

@ManagedBean
@ViewScoped
public class MyBeanMB {

    private List<MyBean> results = new ArrayList<MyBean>();
    private MyBean myBean = new MyBean();
    @EJB
    private MyBeanService myBeanService;

    public String findMyBeans() {
        results = myBeanService.findMyBeans(myBean);
        myBean = new myBeans();
        if (results != null && !results.isEmpty()) {
            return "success";
        }
        FacesContext.getCurrentInstance().addMessage(null, new FacesMessage("No results found"));
        return null;
    }

index.xhtml 页面中的表单如下所示:

<h:form>
            <h:messages />
            <h:outputLabel value="Nombre: " for="nombre"/>
            <h:inputText id="nombre" value="#{myBeanMB.myBean.name}" />
            <h:commandButton value="Buscar" action="#{myBeanMB.findMyBeans}" />

            <h:dataTable id="list" value="#{myBeanMB.results}" var="item">
                <h:column>
                    <f:facet name="header">
                        <h:outputText value="Name"/>
                    </f:facet>
                    <h:outputText value= "#{item.name}" />
                </h:column>
            </h:dataTable>
        </h:form>

我错过了什么?

4

1 回答 1

2

当您返回success托管 bean 时,JSF 将导航到success.xhtml视图(假设您没有在faces-config.xml文件中设置导航规则)并且列表应该在这个视图中处理,而不是在index.xhtml . 为了修复您的代码,请将您的findMyBeans方法更改为 returnvoid而不是String.

public void findMyBeans() {
    results = myBeanService.findMyBeans(myBean);
    myBean = new myBeans();
    if (results != null && !results.isEmpty()) {
        return;
    }
    FacesContext.getCurrentInstance().addMessage(null, new FacesMessage("No results found"));
}
于 2013-05-19T19:23:43.457 回答