Spring web flow not being followed between pages on chrome
I have a two page flow made with spring web flow (version 1.0.5). It works ok in Firefox, but in Chrome I can't go to the second page, as
org.springframework.webflow.executor.support.RequestParameterFlowExecutorArgumentHand开发者_如何学运维ler.isFlowExecutionKeyPresent()
return false. I guess that key is being saved in a httpsession. I tried deleting all cookies and history from the browsers with no avail. Any ideas?
Thanks.
Please check if there is a problem with the hidden field used in the JSP page to keep track of the flow
<input type="hidden" name="_flowExecutionKey" value="${flowExecutionKey}"/>
Check the source page in Chrome.
精彩评论