在seam中发布时,新值不与表单支持对象绑定

时间:2011-04-07 15:22:12

标签: jsf xhtml seam

我有多个由ThingPageBean填充的表单。每个表单都会以<h:commandButton>提交,其中操作设置为#{thingPageBean.doAmazingThing(oneStuff)}。所有字段都是静态的,除了contactEmail和contactPhone,我想使用<h:inputText>代替<h:outputText>,以便用户可以根据需要设置新值。

问题是新值未绑定到doAmazingThing(OneStuff oneStuff)ThingPageBean中收到的对象。旧的仍然存在。

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

我的豆子:

@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>

谢谢 雅各布

2 个答案:

答案 0 :(得分:0)

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

  

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

到页面范围:@Scope(ScopeType.PAGE)

  

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

因为您需要这些数据才能进行更长时间的对话,而不仅仅是一个事件(来自Seam Doc的引用)

答案 1 :(得分:0)

问题似乎有多种形式。将<h:form>标记移到<ui:repeat>标记之外,并确保一切正常。