I have a Spring 4.1.7 + Spring WebFlow 2.4.1 + JSF 2.0 project. I would like to get rid of the request parameter that is added by Spring WebFlow, i.e. execution=e15s1
. I want to get rid of this during transition of the view state as well.
<webflow:flow-execution-attributes>
<!-- without execution param -->
<webflow:always-redirect-on-pause value="false"/>
</webflow:flow-execution-attributes>
I have put the above configuration in flow executor. It helps for start state, but when submitting a JSF form like below,
<h:form id="loginForm">
<h:commandButton value="Login" class="button button-sp" action="Hotelier"/>
</h:form>
the Spring WebFlow request parameter shows up in URL again like so ?execution=e12s1
.
How can I get rid of it?