从网络流返回值(输出)
我正在使用 spring web-flow 2.0,我需要从子流返回一个变量到父流,例如:
<end-state id="end" >
<output name="mvViewBean" value="viewBean" />
</end-state>
并在我的父流中使用它,例如:
<subflow-state id="updateSubflowState" subflow="mv-update" >
<on-exit>
<evaluate expression="mvService.onblabla(mvViewBean)" />
</on-exit>
</subflow-state>
我需要定义变量定义还是其他东西?
I am using spring web-flow 2.0 and I need to return a variable from sub-flow to parent flow like:
<end-state id="end" >
<output name="mvViewBean" value="viewBean" />
</end-state>
and use it inside my parent flow like :
<subflow-state id="updateSubflowState" subflow="mv-update" >
<on-exit>
<evaluate expression="mvService.onblabla(mvViewBean)" />
</on-exit>
</subflow-state>
Do i need to define variable definitions or something else?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
刚刚遇到这个问题... currentEvent 确实有效,但是如果您表明您通过 updateSubflowState 接受变量
然后您将能够以 mvViewBean 的形式访问它。
Just came across this issue...The currentEvent does work, but if you indicate that you accept the variable in your updateSubflowState through a
then you will be able to access it as mvViewBean.
您可以通过 currentEvent 中的属性获取输出值。
Yo can get the output values getting attribute in currentEvent.