我拼了整整一个星期都没能搞定。用户对象不会更新…下面是重要的xhtml部分:
<p:dataTable id="usersTable" var="user" value="#{userBean.allUsers}">
<p:ajax event="rowToggle" listener="#{userBean.onRowToggle}" update=":form_user_management:tabView_viewUsers:messages" />
<f:facet name="header">
User
</f:facet>
<p:rowExpansion>
<h:panelGrid id="display" columns="2" cellpadding="10" style="width:300px;"
styleClass=" ui-widget-content grid">
<p:panel id="panel" header="Benutzer bearbeiten">
<p:messages id="msgs"/>
<h:panelGrid columns="3" >
<h:outputLabel for="firstname" value="Firstname: *" />
<p:inputText id="firstname" value="#{user.userFirstName}" required="true" label="Firstname">
<f:validateLength minimum="2" />
</p:inputText>
<p:message for="firstname" display="icon"/>
<h:outputLabel for="surname" value="Surname: *" />
<p:inputText id="surname" value="#{user.userLastName}" label="Surname" required="true">
<f:validateLength minimum="2" />
<p:ajax update="msgSurname" event="keyup" />
</p:inputText>
<p:message for="surname" id="msgSurname" display="icon"/>
<p:commandLink id="changepw" value="Passwort ändern" onclick="dlg.show()" title="Passwort ändern">
<f:setPropertyActionListener value="#{user}" target="#{userBean.currentUser}" />
</p:commandLink>
<p:commandButton ajax="true" id="btnUpdateUser" value="Update" update=":form_user_management @all" actionListener="#{userBean.updateUser(user)}"/>
<p:commandButton ajax="true" id="btnDeleteUser" value="Delete" update=":form_user_management" actionListener="#{userBean.deleteUser(user)}"/>
</h:panelGrid>
</p:panel>
</h:panelGrid>
</p:rowExpansion>
当我单击"保存"时,展开的行消失了,但新值没有显示,Java方法"userBean.updateUser(user)"只获得用户对象的旧值。
UserBean的头部是:
@Named
@SessionScoped
public class UserBean implements Serializable {
SessionScoped来自javax.enterprise.context
我还尝试使用旧的@ManagedBean的东西,但这也没有帮助。我认为问题在于xhtml文件和ajax的东西…哦,我用和其他模板的东西。
使用Primefaces 3.4和Glassfish 3+
完整UserBean: http://pastebin.com/yQCgiM4E完整的Xhtml: http://pastebin.com/19TWt3Dv(有趣的是第110行)
好吧,我的朋友自己解决了这个问题return action.getActionEvent()+"?faces-redirect=true";
中的动作属性,如<h:commandButton action="page1?faces-redirect=true" value="Page1" />
这解决了ajax-delay-shit