在下面的 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 模拟不模拟表单提交。
在此先感谢,布赖恩