我用Spring Webflow。我可以從GET中刪除'執行'參數嗎?我可以從GET中刪除「執行」參數嗎?
例如:
http://localhost:8090/myapp/account/register.do? 執行= e1s2
http://localhost:8090/myapp/account/register.do? 執行= e2s12
http://localhost:8090/myapp/account/register.do? 執行= e3s2
我用Spring Webflow。我可以從GET中刪除'執行'參數嗎?我可以從GET中刪除「執行」參數嗎?
例如:
http://localhost:8090/myapp/account/register.do? 執行= e1s2
http://localhost:8090/myapp/account/register.do? 執行= e2s12
http://localhost:8090/myapp/account/register.do? 執行= e3s2
您可以通過流執行的always-redirect-on-pause
屬性設置爲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>
此網址可能是有用的:http://www.ervacon.com/products/swf/tips/tip4.html
謝謝,哥們幫了很多。 – 2015-09-27 18:48:03
是否真的可收藏的?我的理解是,流程執行與會話相關,所以一旦會話過期,流程將不再可用,從而破壞用戶的書籤。 – threejeez 2011-05-16 21:49:59