I'm using Spring WebFlow together with Spring MVC. When i request page for example http://localhost:8080/testapp/index.html?param=100
WebFlow make redirect to http://localhost:8080/testapp/index.html?execution=e3s1
and can't get param
in jsp, param
lost somewhere. How to get this working ?
Another example of this situation - Spring Security configured like below:
<security:form-login authentication-failure-url="/login.html?loginfail=1" login-page="/login.html" />
When login fail, i can't get loginfail
parameter in login.jsp
.
<c:if test="${!empty param.loginfail}">Login error!</c:if>
I can access request parameters in flow, but... Do i have to set view/flowScope variables for all my request parameters like below ?
<set name="viewScope.loginfail" value="requestParameters.loginfail" />