如何向spring webflow传递参数?
首先,我不知道如何为spring webflow配置restful url请求, 例如,当输入地址时如何调用我的网络流: http://localhost/app/order/edit/1002
编写spring mvc控制器很容易来处理这个问题,但在网络流的情况下,我不知道如何传递参数。
有人可以帮助我吗? 谢谢
First of all, I don't know how can config restful url request for spring webflow,
for example,how can I invoke my webflow when type address:
http://localhost/app/order/edit/1002
It's easy to write spring mvc controller to handle this,but in case of webflow, I don't know how to pass parameters.
Can anybody help me?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试读取请求参数,如下所示。
它处理“http://example.com/message?messageId=3”,但是在渲染时视图中,URL 更改为类似“http://example.com/message?execution=e1s1”。
流代码:
FooWebFlowController bean:
Try reading request parameter like following.
It processes "http://example.com/message?messageId=3" but when rendering view, the URL changes to something like "http://example.com/message?execution=e1s1".
Flow code:
FooWebFlowController bean:
是 RequestPathFlowExecutorArgumentHandler 您在寻找什么?
Is the RequestPathFlowExecutorArgumentHandler what you're looking for?