3

在下面的 Web Flow 中,我将表单数据绑定到视图状态下提交事件的流变量 (lifeCycleForm)。我已验证名称、标签和描述属性都按预期填充。

但是,当计算操作状态中的表达式时,所有三个属性都为空。我的表单 bean 是可序列化的,我只是使用简单的字符串属性。

我做错了什么?

我对 Spring WebFlow 很陌生,所以我可能错过了一些明显的东西。

<var name="lifeCycleForm" class="com.btmatthews.freelancer.lifecycle.portlet.LifeCycleForm" />

<view-state id="createLifeCycle" model="lifeCycleForm">
    <binder>
        <binding property="name" required="true" />
        <binding property="label" required="true" />
        <binding property="description" required="false" />
    </binder>
    <transition on="submit" to="createLifeCycleAction" />
    <transition on="cancel" to="lifeCycleCreationCancelled" bind="false" />
</view-state>

<action-state id="createLifeCycleAction">        
    <evaluate expression="lifeCycleService.createLifeCycle(lifeCycleForm.name, lifeCycleForm.label, lifeCycleForm.description, null, null)" />
    <transition on="success" to="lifeCycleCreated" />
    <transition on="failure" to="createLifeCycle" />
</action-state>

<end-state id="lifeCycleCreated" />

<end-state id="lifeCycleCreationCancelled" />

更新:我忽略了在我原来的帖子中提到是我的单元测试失败了。从那以后我了解到 AbstractFlowExecutionTests 没有实现请求参数的绑定。这对我来说似乎有点疏忽。我已经尝试了最新的每晚 Spring WebFlow 2.0.4 并且行为保持不变。

更新:我的问题是 Spring WebFlow 模拟不模拟表单提交。

在此先感谢,布赖恩

4

1 回答 1

1

令人懊恼的是,我最近还发现 Webflow 测试模拟不使用 Spring 的绑定。您是否尝试过在 Eclipse 等 IDE 中在 Tomcat 等容器中使用调试来运行流程?如果你没有,它会非常有用。如果您需要帮助,我可以提供进一步的提示,但如果您还没有开始,我会说下载 Eclipse Web 标准工具和 Web 工具项目插件。

顺便说一句,如果您真的希望能够对绑定进行单元测试,您仍然可以使用 Spring Webflow 1 FormActions 来绑定到模型对象,即使它会使您的流程更加冗长。

于 2009-03-20T08:03:01.487 回答