我正在使用Spring WebFlow和Spring MVC。當我請求頁面例如http://localhost:8080/testapp/index.html?param=100
WebFlow使重定向到http://localhost:8080/testapp/index.html?execution=e3s1
並且不能得到param
在jsp中,param
丟失某處。如何得到這個工作?Spring WebFlow:如何在JSP中獲取請求參數?
這種情況另一個例子 - 春季安全配置如下圖所示:
<security:form-login authentication-failure-url="/login.html?loginfail=1" login-page="/login.html" />
當用戶登錄失敗,我不能在login.jsp
得到loginfail
參數。
<c:if test="${!empty param.loginfail}">Login error!</c:if>
我可以訪問請求參數流量,但是...我必須設置視圖/ flowScope變量爲我所有的請求參數象下面這樣?
<set name="viewScope.loginfail" value="requestParameters.loginfail" />
感謝您的全面回答 – marioosh 2011-06-19 07:23:36