Java 我可以取下';执行';参数来自GET?

Java 我可以取下';执行';参数来自GET?,java,spring,model-view-controller,spring-webflow,Java,Spring,Model View Controller,Spring Webflow,我使用SpringWebFlow。我可以从get中删除'execution'参数吗 例如: ?执行=e1s2 ?执行=e2s12 ?execution=e3s2您可以通过将流执行器的总是在暂停时重定向属性设置为false,但不建议这样做-execution参数导致url是有状态的和可书签的 <webflow:flow-executor id="flowExecutor" > ... <webflow:flow-execution-attributes>

我使用SpringWebFlow。我可以从get中删除'execution'参数吗

例如:

?执行=e1s2

?执行=e2s12


execution=e3s2

您可以通过将流执行器的
总是在暂停时重定向
属性设置为
false
,但不建议这样做-
execution
参数导致url是有状态的可书签的

<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>

...

此url可能很有用:

它真的可以添加书签吗?我的理解是,流的执行与会话有关,因此一旦会话过期,流将不再可访问,从而破坏用户的书签。多谢dude的帮助。