我无法从托管 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>
我错过了什么?