gpt4 book ai didi

jsf - f :setPropertyActionListener always setting null

转载 作者:行者123 更新时间:2023-12-02 06:02:25 25 4
gpt4 key购买 nike

我正在尝试将当前迭代的 <p:dataTable var>使用 <f:setPropertyActionListener> 作为托管 bean 的属性.但是,它始终设置为 null .

View ,dentistas.xhtml :

<!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://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui">

<h:head>

</h:head>
<h:body>
<ui:composition template="/templates/template.xhtml">

<ui:define name="content">
<h:form id="formDentistas">

<p:growl autoUpdate="true" />

<p:commandButton icon="ui-icon-plus" value="Cadastrar"
id="cadastrar" oncomplete="dialogCadastrar.show()" />


<p:dataTable var="dentista" value="#{dentistaMB.dentistas}"
paginator="true" emptyMessage="Não foi encontrado nenhum registro"
rows="10" id="dataTableDentistas">

<f:facet name="header">Lista de Dentistas</f:facet>
<p:column headerText="Nome" sortBy="nome" filterBy="nome" id="nome"
width="200px">
#{dentista.pessoaFisica.nome}
</p:column>

<p:column headerText="Data Nascimento" sortBy="dataNascimento"
filterBy="dataNascimento" id="dataNascimento" width="60px">
#{dentista.pessoaFisica.dataNascimento}
</p:column>

<p:column headerText="CRO" sortBy="cro" filterBy="cro" id="cro"
width="60px">
#{dentista.cro}
</p:column>

<p:column headerText="Ações" style="width:50px;">
<p:commandButton value="Alterar" icon="ui-icon-pencil">
<f:setPropertyActionListener target="#{dentistaMB.selectedDentista}" value="#{dentista}" />
</p:commandButton>

<p:commandButton value="Remover" icon="ui-icon-trash"
actionListener="#{dentistaMB.deletar}">
<f:setPropertyActionListener target="#{dentistaMB.selectedDentista}" value="#{dentista}" />
</p:commandButton>
</p:column>

</p:dataTable>
</h:form>

<ui:include src="/tabelas/dialog_insert_dentista.xhtml" />


</ui:define>
</ui:composition>


</h:body>
</html>

托管 bean,DentistaMBImpl :

package br.com.odontonew.mb;  

import java.util.List;
import java.util.Map;

import javax.annotation.PostConstruct;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ManagedProperty;
import javax.faces.bean.RequestScoped;
import javax.faces.bean.SessionScoped;
import javax.faces.bean.ViewScoped;
import javax.faces.context.ExternalContext;
import javax.faces.context.FacesContext;
import javax.faces.convert.FacesConverter;
import javax.faces.event.ActionEvent;

import org.apache.log4j.Logger;
import org.primefaces.context.RequestContext;

import br.com.odontonew.bean.Dentista;
import br.com.odontonew.bean.EstadoCivil;
import br.com.odontonew.bean.PessoaFisica;
import br.com.odontonew.bean.Sexo;
import br.com.odontonew.bean.SituacaoPessoa;
import br.com.odontonew.bean.Uf;
import br.com.odontonew.bo.BasicBO;
import br.com.odontonew.exception.BOException;

@ManagedBean(name = "dentistaMB")
@ViewScoped
public class DentistaMBImpl extends BasicMBImpl {

private Logger logger = Logger.getLogger(DentistaMBImpl.class);

@ManagedProperty("#{dentistaBO}")
private BasicBO dentistaBO;
private Dentista dentista;
private Dentista selectedDentista;
private List<Dentista> dentistas;

// Lists
private List<EstadoCivil> estadosCivis;
private List<SituacaoPessoa> situacoesPessoa;
private List<Sexo> sexos;
private List<Uf> ufs;

@PostConstruct
public void init() {
dentista = new Dentista();
dentista.setPessoaFisica(new PessoaFisica());
dentista.getPessoaFisica().setSexo(new Sexo());
dentista.getPessoaFisica().setEstadoCivil(new EstadoCivil());
dentista.getPessoaFisica().setSituacao(new SituacaoPessoa());
dentista.getPessoaFisica().setUf(new Uf());
estadosCivis = (List<EstadoCivil>) dentistaBO
.findByNamedQuery(EstadoCivil.FIND_ALL);
situacoesPessoa = (List<SituacaoPessoa>) dentistaBO
.findByNamedQuery(SituacaoPessoa.FIND_ALL);
sexos = (List<Sexo>) dentistaBO.findByNamedQuery(Sexo.FIND_ALL);
ufs = (List<Uf>) dentistaBO.findByNamedQuery(Uf.FIND_ALL);
}

public void salvar(ActionEvent event) {
try {
dentista = (Dentista) dentistaBO.save(dentista);
addInfoMessage("Dentista salvo com sucesso");
RequestContext.getCurrentInstance().execute(
"dialogCadastrar.hide()");

} catch (BOException e) {
addErrorMessage(e.getMessage());
}
}

public void atualizar(ActionEvent event) {
try {
dentistaBO.update(selectedDentista);
addInfoMessage("Dentista atualizado com sucesso");
} catch (BOException e) {
addErrorMessage(e.getMessage());
}
}

public void deletar(ActionEvent event) {
try {
dentistaBO.delete(selectedDentista);
addInfoMessage("Dentista deletado com sucesso");
} catch (BOException e) {
addErrorMessage(e.getMessage());
}
}

public List<Dentista> getDentistas() {
try {
if (dentistas == null)
dentistas = (List<Dentista>) dentistaBO
.findByNamedQuery(Dentista.FIND_ALL_COMPLETO);

return dentistas;
} catch (BOException e) {
addErrorMessage(e.getMessage());
return null;
}
}

/* gets and sets */

public Dentista getSelectedDentista() {
return selectedDentista;
}

public void setSelectedDentista(Dentista selectedDentista) {
this.selectedDentista = selectedDentista;
}

public Dentista getDentista() {
return dentista;
}

public void setDentista(Dentista dentista) {
this.dentista = dentista;
}

public Logger getLogger() {
return logger;
}

public void setLogger(Logger logger) {
this.logger = logger;
}

public List<EstadoCivil> getEstadosCivis() {
return estadosCivis;
}

public void setEstadosCivis(List<EstadoCivil> estadosCivis) {
this.estadosCivis = estadosCivis;
}

public List<SituacaoPessoa> getSituacoesPessoa() {
return situacoesPessoa;
}

public void setSituacoesPessoa(List<SituacaoPessoa> situacoesPessoa) {
this.situacoesPessoa = situacoesPessoa;
}

public List<Sexo> getSexos() {
return sexos;
}

public void setSexos(List<Sexo> sexos) {
this.sexos = sexos;
}

public void setDentistas(List<Dentista> dentistas) {
this.dentistas = dentistas;
}

public List<Uf> getUfs() {
return ufs;
}

public void setUfs(List<Uf> ufs) {
this.ufs = ufs;
}

public BasicBO getDentistaBO() {
return dentistaBO;
}

public void setDentistaBO(BasicBO dentistaBO) {
this.dentistaBO = dentistaBO;
}



}

最佳答案

这里,

<p:commandButton value="Remover" icon="ui-icon-trash"  
actionListener="#{dentistaMB.deletar}">
<f:setPropertyActionListener target="#{dentistaMB.selectedDentista}" value="#{dentista}" />
</p:commandButton>

您正在 actionListener 中执行删除方法而不是 action方法。这个不对。应在 action 中执行业务操作方法。所有 Action 监听器,包括 <f:setPropertyActionListener> , 之前被调用 action方法的顺序与在命令组件上声明和分配的顺序完全相同。因此,实际上,首先调用删除,然后设置属性。这就解释了为什么该属性是 null在删除期间。

修复很简单:将其设为真实的 action方法:

<p:commandButton value="Remover" icon="ui-icon-trash"  
action="#{dentistaMB.deletar}">
<f:setPropertyActionListener target="#{dentistaMB.selectedDentista}" value="#{dentista}" />
</p:commandButton>

不要忘记删除 ActionEvent参数:

public void deletar() {  
// ...
}

另见:


与具体问题无关,如果您碰巧以 Servlet 3.0/EL 2.2 兼容容器为目标,那么您甚至可以摆脱那个 <f:setPropertyActionListener>一共:

<p:commandButton value="Remover" icon="ui-icon-trash"  
action="#{dentistaMB.deletar(dentista)}" />

与:

public void deletar(Dentista selectedDentista) {  
// ...
}

另见 How can I pass selected row to commandLink inside dataTable? 的第 3 点

关于jsf - f :setPropertyActionListener always setting null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18358467/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com