FlowScope在页面刷新时清除

时间:2015-03-17 11:42:03

标签: java spring spring-webflow cas spring-webflow-2

根据我的应用程序要求,我必须为登录过程声明一些变量(比如登录尝试失败)。

因此,使用

  

context.getFlowScope()。put(“count”,++ count);

似乎是解决方案。但刷新页面后,使用F5甚至在更糟糕的情况下使用ctrl + F5,变量将被重置并绑定为null。

那么,我应该怎样做才能为每个请求提供一致的请求绑定属性。

请注意,我被迫使用

  

org.springframework.webflow.execution.RequestContext

提前感谢。

1 个答案:

答案 0 :(得分:4)

将count变量放入会话中。请参阅以下示例

Spring webflow - how to pass the session in evaluate expression?