Put a request parameter in the url and pass it using Spring Webflow

I'm working with spring webflow and I need to generate a requestParameter in my first flow, put and pass it in the url to the next flows.

For example:

http://myHost/flow1?_flowExecutionKey=e1s1&personName=Anne  
http://myHost/flow2?_flowExecutionKey=e2s2&personName=Anne  
http://myHost/flow3?_flowExecutionKey=e3s3&personName=Anne  

Is it possible to use URL with parameters in Spring WebFLow? How can I put it in the url? How can I persist the value and pass it to the next flow?

Thanks!


Spring Webflow passes HTTP GET params via the the 'input' tag.

see: How to pass parameters to spring webflow

链接地址: http://www.djcxy.com/p/39164.html

上一篇: Spring webflow 1.0升级到2.4.2

下一篇: 在URL中放入请求参数并使用Spring Webflow传递它