我用于Spring Webflow。我可以从GET中删除'execution'参数吗?
例如:
http://localhost:8090/myapp/account/register.do?的执行= e1s2
答案 0 :(得分:2)
您可以通过将流量执行程序的always-redirect-on-pause
属性设置为false
来实现,但不建议使用execution
参数导致网址有状态的可标记强>
<webflow:flow-executor id="flowExecutor" >
...
<webflow:flow-execution-attributes>
<!-- without execution param -->
<webflow:always-redirect-on-pause value="false"/>
</webflow:flow-execution-attributes>
</webflow:flow-executor>