在URL中放入请求参数并使用Spring Webflow传递它
我正在使用spring webflow,我需要在第一个流中生成一个requestParameter,并将它传递给下一个流。
例如:
http://myHost/flow1?_flowExecutionKey=e1s1&personName=Anne
http://myHost/flow2?_flowExecutionKey=e2s2&personName=Anne
http://myHost/flow3?_flowExecutionKey=e3s3&personName=Anne
Spring WebFLow中可以使用带参数的URL吗? 我怎样才能把它放在网址中? 我如何坚持价值并将其传递给下一个流程?
谢谢!
Spring Webflow通过'input'标签传递HTTP GET参数。
请参阅:如何将参数传递给spring webflow
链接地址: http://www.djcxy.com/p/39163.html上一篇: Put a request parameter in the url and pass it using Spring Webflow