我有以下单选按钮可选择的数据表:
<h:form>
<p:dataTable value="#{gerarDocumentoBacking.reclamantes}"
selection="#{gerarDocumentoBacking.reclamante}" var="re" rowKey="#{re.id}">
<p:column headerText="Id">
<h:outputText value="#{re.id}"/>
</p:column>
<p:column headerText="Relamantes">
<h:outputText value="#{re.nome}"/>
</p:column>
<p:column selectionMode="single"/>
</p:dataTable>
<p:commandButton value="Gerar" action="#{gerarDocumentoBacking.gerar}"/>
</h:form>
按预期显示所有行和单选按钮。但是,它没有设置reclamante
变量,如selection=
属性中指定的那样。
setReclamante
方法可用且公开:
@Named
@ViewScoped
public class GerarDocumentoBacking implements Serializable {
private static final long serialVersionUID = 1L;
private List<Reclamante> reclamantes;
private Reclamante reclamante;
@EJB
private ReclamanteService reclamanteService;
@PostConstruct
public void init() {
reclamantes = reclamanteService.listar();
}
public String gerar() {
System.out.println(reclamante.getNome());
return null;
}
public Reclamante getReclamante() {
return reclamante;
}
public void setReclamante(Reclamante reclamante) {
this.reclamante = reclamante;
}
...
使用一些IDE调试,我可以看到setReclamante
方法被调用为空值,所以我的gerar
方法在System.out.println(reclamante.getNome());
行抛出NullPointerException。我的数据表有rowKey属性,我知道它是有效的,因为它被显示在数据表中。
我需要数据表外的命令按钮,因为我打算在这个h:form
中使用其他数据表。
找到问题。这个页面有一个<head>
标签而不是<h:head>
。