p:selectOneMenu in p:panel 保存后无加载正确

p:selectOneMenu in p:panel no load correct after save

我正在使用 STS(Spring 工具套件)和 spring 启动、primefaces 和休眠。

我有一个页面 p:datatable。在最后一列中,有一个 p:commandbutton 用于编辑 table (p:dialog) 的数据。 当我打开对话框时,所有数据加载正确。如果我在不保存的情况下关闭对话框并打开 table 数据加载的其他行再次正确,但是,如果我保存数据并打开 table 其他行的新对话框,字段 p:selectOneMenu 加载了错误的数据。您的值与上次保存的对话框的值相同。所有对话框数据都正确,组合框除外 (p:selectOneMenu)。在调试中,backing bean 中返回的值是正确的。

我尝试过的一些事情:

都没有成功。

ps: 数据table 被过滤和分页。

xhtml:

<p:panel id="pnlData" header="My Table">
    <h:form id="frmTable">
        <p:dataTable var="item" value="#{RSDMBean.myData}"
                id="tblTicketsID" widgetVar="tabelaTickets" some things of pagination and filters here...>

                <p:column />
                <p:column /> ...

            <p:column headerText="Edit">
                    <p:commandButton value="Edit"
                        actionListener="#{RSDMBean.editTicketLoad(item.idTicket)}" 
                        update=":formPnl:pnlTkct" oncomplete="PF('dlgtkt').show();">
                   </p:commandButton>
           </p:column>
     </p:datatable>
  </h:form
</p:panel>

<p:dialog id="dlgtktID" header="Edit ticket" widgetVar="dlgtkt"
        modal="true">
        <h:form id="formPnl">
<h:panelGrid id="pnlTkct" columns="2" cellpadding="10"
                cellspacing="1" style="absolute">

                <h:outputText style="font-weight:bold" value="Id Ticket: " />
                <h:outputText value="#{RSDMBean.ticketEdited.id}" />

       Others fields here...

<h:outputText style="font-weight:bold" value="County: " />
                <p:selectOneMenu style="min-width: 162px;" required="true">
                    <f:selectItem itemLabel="#{RSDMBean.ticketEdited.county.name}"
                        itemValue="#{RSDMBean.ticketEdited.county.id}" />
                    <f:selectItems
                        value="#{RSDMBean.countyItensedit.entrySet()}" var="entry"
                        itemValue="#{entry.key}" itemLabel="#{entry.value}" />
                </p:selectOneMenu>

                <p:commandButton value="Save" action="#{RSDMBean.saveEdit}"
                    update=":frmTable:tblTicketsID" oncomplete="PF('dlgtkt').hide();" />
end tags here...

豆子:

import javax.annotation.PostConstruct;
import javax.faces.bean.RequestScoped;
import org.springframework.beans.factory.annotation.Autowired;
.
.
.

@Controller("RSDMBean")
@RequestScoped
public class MyMBean implements Serializable {
@Autowired
private ResiduoService residuoService;
@Autowired
private ResiduoRepository residuoRepository;
@Autowired
private CountyRepository countyRepository;

private Residuo ticketEdited;

private List<County> county;

private Map<Long, String> countyItensEdit = new HashMap<Long, String>();


public void editTicketLoad(String param) {
    long idTicket = Long.parseLong(param);
    ticketEdited = residuoRepository.findOne(idTicket);
    county = countyRepository.findAll();
}

@PostConstruct
public void construct() {
//some loads database here...
    county = countyRepository.findAll();

    if (countyItensEdit.isEmpty()) {
        for (Municipio c : countyItensEdit) {

            countyItensEdit.put(c.getId(), c.getNome());
        }
    }
}

在 p:selectOneMenu 中缺少值标记:

<p:selectOneMenu style="min-width: 162px;" required="true"
                    value="#{RSDMBean.ticketEdited.county.id}">