Scope Interceptor Struts 2:后退按钮行为

时间:2012-08-23 07:35:09

标签: java-ee struts2 scope wizard interceptor

我想使用Scope拦截器在我的Struts2(2.2.3.1)应用程序中实现类似向导的向导。

我的struts.xml文件如下:

<action name="actionA class="classA" method="methodA">
    <interceptor-ref name="basicStack" />   
    <interceptor-ref name="scope">
        <param name="session">stringA</param>
        <param name="key">consultGuides</param>
        <param name="type">start</param>
    </interceptor-ref>      
    <result>/resultA.jsp</result>
</action>
<action name="actionB" class="classA" method="methodB">
    <interceptor-ref name="scope">
        <param name="session">stringA, listA</param>
        <param name="key">consultGuides</param>
        </interceptor-ref>
        <interceptor-ref name="basicStack" />               
        <result>/resultB.jsp</result>
</action>
    ....
    ....

“resultA.jsp”提交填充“listA”的“actionB”。但是现在如果我按下后退按钮(到达resultA.jsp,其中resultA.jsp刚刚从其缓存加载到浏览器而不向服务器发出新请求)并对列表进行任何更改,则新条目将附加到“listA”而不是完全取代它。

修改'listA'的'resultA.jsp'中的代码是

<s:iterator value="listB"   status="statusB">
    <li>
        <a title="%{varA}">
            <s:checkbox name="listA.id" fieldValue="%{varB}" />
        </a>
    </li>
</s:iterator>

我没有实现SessionAware,只是依靠scopeInterceptor将listA提供给会话。

如何使用请求中的新列表替换“listA”?

1 个答案:

答案 0 :(得分:0)

为了在点击浏览器的后退或前进按钮后不允许缓存页面,您可以尝试在http响应中添加一些标题,每次单击后退或前进按钮时都会清除缓存。

如果你在拦截器中添加它,这非常有效。

response.setHeader("Cache-Control", "no-cache, no-store"); //HTTP 1.1
response.setHeader("Pragma", "no-cache"); //HTTP 1.0
response.setDateHeader("Expires", 0); //prevents caching at the proxy server   

通过这样做,按下后退按钮不会加载缓存页面,但会向服务器发出新请求。 这应该可以解决您的问题。