在接缝中粘贴时,新值不与表单支持对象绑定



我有多个由ThingPageBean填充的表单。每个表单都提交了一个<h:commandButton>,其中操作被设置为调用#{thingPageBean.doAmazingThing(oneStuff)}。所有字段都是静态的,除了contactEmail和contactPhone,我想使用<h:inputText>而不是<h:outputText>,以便用户可以设置一个新的值,如果他们愿意。

问题是新值没有绑定到ThingPageBeandoAmazingThing(OneStuff oneStuff)中接收的对象。旧的还在。

我做错了什么?我错过了什么关键的部分吗?

我的豆:

@SuppressWarnings({"unchecked"})
@AutoCreate
@Name("thingPageBean")
@Scope(ScopeType.EVENT)
@Restrict("#{s:hasRole('admin')}")
public class ThingPageBean implements Serializable {
    @In
    StuffService stuffService;
    @In
    private StatusMessages statusMessages;

    public String doAmazingThing(OneStuff oneStuff) {
        return this.stuffService.doAmazingStuffToThing(oneStuff);    
    }
    @Factory(value = "notHandledStuff")
    public List<Stuff> notHandledStuff() {
        return this.stuffService.searchNotHandledStuff();
    }
}
我的xhtml文件:

<ui:composition xmlns="http://www.w3.org/1999/xhtml"
                xmlns:s="http://jboss.com/products/seam/taglib"
                xmlns:ui="http://java.sun.com/jsf/facelets"
                xmlns:f="http://java.sun.com/jsf/core"
                xmlns:h="http://java.sun.com/jsf/html"
                xmlns:c="http://java.sun.com/jstl/core"
                template="/layout/SiteTemplate.xhtml">

    <ui:param name="robots" value="noindex"/>
    <!-- hide blocks -->
    <ui:param name="preContentHide" value="true"/>
    <ui:define name="mainContent">
            <c:set var="stuff" value="#{notHandledStuff}"/>
            <s:div styleClass="section"
                   rendered="#{stuff == null or stuff.size==0}">
                <h:outputText value="#{messages['stuff.no']}"/>
            </s:div>
            <s:div styleClass="section"
                   rendered="#{stuff != null and stuff.size>0}">
                <br/>
                <ui:repeat var="oneStuff" value="#{stuff}">
                    <h:form id="stuffForm">
                        <hr style="margin-top:8px;margin-bottom:4px;"/>
                        <table border="1">
                            <tr>
                                <td><b>Company name:</b></td>
                                <td width="780px"><h:outputText value="#{oneStuff.companyName}"/></td>
                            </tr>
                            <tr>
                                <td><b>street:</b></td>
                                <td><h:outputText value="#{oneStuff.street}"/></td>
                                <td/>
                            </tr>
                            <tr>
                                <td><b>zip:</b></td>
                                <td><h:outputText value="#{oneStuff.zip}"/></td>
                                <td/>
                            </tr>
                            <tr>
                                <td><b>city:</b></td>
                                <td><h:outputText value="#{oneStuff.city}"/></td>
                                <td/>
                            </tr>
                            <tr>
                                <td style="padding-top:10px"><b>contactPerson:</b></td>
                                <td><h:outputText value="#{oneStuff.contactPersonName}"/></td>
                                <td/>
                            </tr>
                            <tr>
                                <td><b>contactEmail:</b></td>
                                <td><h:inputText value="#{oneStuff.contactEmail}"/></td>
                                <td/>
                            </tr>
                            <tr>
                                <td><b>contactPhone:</b></td>
                                <td><h:inputText id="contactPhone" value="#{oneStuff.contactPhone}"/></td>
                                <td/>
                            </tr>
                                    <h:commandButton id="submit"  value="couple"
                                                     action="#{thingPageBean.doAmazingThing(oneStuff)}"/>
                                </td>
                            </tr>
                        </table>
                      </s:div>
                    </h:form>
                </ui:repeat>
                <hr style="margin-top:8px;margin-bottom:4px;"/>
            </s:div>
            <br/>
        </div>
    </ui:define>
</ui:composition>

谢谢Jakob

我建议更改您的@Scope(ScopeType.EVENT)

事件(请求)上下文:跨越服务器请求,从恢复视图到呈现响应。

到一个页作用域:@Scope(ScopeType.PAGE)

在呈现页面之前的调用应用程序阶段开始,并持续到来自该页面的面部请求的任何调用应用程序阶段结束。非面孔请求不传播页面作用域。

因为您确实需要这些数据用于更长的对话而不仅仅是事件(引用自Seam Doc)

问题似乎出在多个表单上。将<h:form>标签移到<ui:repeat>标签之外,瞧,一切都工作了。

相关内容

  • 没有找到相关文章

最新更新