<bdo id='AhB7j'></bdo><ul id='AhB7j'></ul>

      1. <tfoot id='AhB7j'></tfoot>

        <i id='AhB7j'><tr id='AhB7j'><dt id='AhB7j'><q id='AhB7j'><span id='AhB7j'><b id='AhB7j'><form id='AhB7j'><ins id='AhB7j'></ins><ul id='AhB7j'></ul><sub id='AhB7j'></sub></form><legend id='AhB7j'></legend><bdo id='AhB7j'><pre id='AhB7j'><center id='AhB7j'></center></pre></bdo></b><th id='AhB7j'></th></span></q></dt></tr></i><div id='AhB7j'><tfoot id='AhB7j'></tfoot><dl id='AhB7j'><fieldset id='AhB7j'></fieldset></dl></div>

        <small id='AhB7j'></small><noframes id='AhB7j'>

        <legend id='AhB7j'><style id='AhB7j'><dir id='AhB7j'><q id='AhB7j'></q></dir></style></legend>

      2. 如何使用 Struts2 禁用后退按钮

        How to Disable back button using Struts2(如何使用 Struts2 禁用后退按钮)
            <tbody id='bNjuM'></tbody>

          <tfoot id='bNjuM'></tfoot>

            <legend id='bNjuM'><style id='bNjuM'><dir id='bNjuM'><q id='bNjuM'></q></dir></style></legend>
            <i id='bNjuM'><tr id='bNjuM'><dt id='bNjuM'><q id='bNjuM'><span id='bNjuM'><b id='bNjuM'><form id='bNjuM'><ins id='bNjuM'></ins><ul id='bNjuM'></ul><sub id='bNjuM'></sub></form><legend id='bNjuM'></legend><bdo id='bNjuM'><pre id='bNjuM'><center id='bNjuM'></center></pre></bdo></b><th id='bNjuM'></th></span></q></dt></tr></i><div id='bNjuM'><tfoot id='bNjuM'></tfoot><dl id='bNjuM'><fieldset id='bNjuM'></fieldset></dl></div>

            <small id='bNjuM'></small><noframes id='bNjuM'>

              • <bdo id='bNjuM'></bdo><ul id='bNjuM'></ul>
                  本文介绍了如何使用 Struts2 禁用后退按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在使用 struts.serve.static=truestruts.serve.static.browserCache=false,但即使在注销后后退按钮也可以使用.当我单击后退按钮时,它将转到上一个屏幕.我该如何解决这个问题?

                  I am using struts.serve.static=true and struts.serve.static.browserCache=false, but the back button is working even after logout. When i click on the back button it is going to the previous screen. How do i solve this issue?

                  推荐答案

                  上面的常量会被 S2 用来告诉浏览器是否需要缓存静态内容.

                  The above constants will be used by S2 to tell browser if they need to cache static content.

                  struts.serve.static=true
                  

                  FilterDispatcher

                  • 如果为 true,则 Struts 从其 jar 中提供静态内容.
                  • 如果为 false,则静态内容必须在/struts 中可用

                  struts.serve.static.browserCache=true 也被 FilterDispatcher 使用,并且只有在 struts.serve.static=true 时才有效.

                  also struts.serve.static.browserCache=true is used by FilterDispatcher and will work only if struts.serve.static=true.

                  • 如果为真 -> Struts 会为静态内容写出标题,这样它们就会由 Web 浏览器缓存(使用 Date、Cache-Content、Pragma、Expires)标题).
                  • 如果为 false -> Struts 将为静态内容写出标题,这样它们不被 Web 浏览器缓存(使用 Cache-Content、Pragma、Expires标题)简而言之,这两个常量都是一种告诉浏览器是否需要缓存 S2 提供的静态内容的方法.

                  关于浏览器后退按钮,我们不能将浏览器后退按钮作为浏览器 API 的一部分禁用,并且当您点击后退按钮时,浏览器会从其缓存中提供内容而无需访问服务器.

                  Regarding browser back button we can not disable browser back button as its a part of Browser API and when you are hitting the back button browser is serving the content from its cache without hitting the server.

                  您可以通过使用缓存控制标头来要求浏览器不要缓存内容,但浏览器是否尊重它们.在您的 JSP 中使用以下代码

                  You can ask the browser not to cache the content by using cache control header but its upon the browser to respect them or not. use following code in your JSP

                  response.setHeader("Pragma", "no-cache");
                  response.setHeader("Cache-Control", "no-cache");
                  response.setHeader("Expires", "0");
                  

                  或者,您可以创建一个拦截器并使用所需的操作对其进行配置,以便可以设置标头.有关如何控制 S2 中的缓存的更多详细信息,请参阅以下线程

                  Alternatively you can create an Interceptor and configure it with your desired action so that the headers can be set. Please go through the following thread for more details as how to control the cache in S2

                  • Handling-Browser-Back-Forward-Button-in-Struts2

                  这篇关于如何使用 Struts2 禁用后退按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Compiling C++ for the JVM(为 JVM 编译 C++)
                  Compile to java bytecode (without using Java)(编译成java字节码(不使用Java))
                  How to drive C#, C++ or Java compiler to compute 1+2+3+...+1000 at compile time?(如何在编译时驱动 C#、C++ 或 Java 编译器计算 1+2+3+...+1000?)
                  Java ClassLoader: load same class twice(Java ClassLoader:两次加载相同的类)
                  How to debug .class files in ECLIPSE?(如何在 ECLIPSE 中调试 .class 文件?)
                  Java quot;The blank final field may not have been initializedquot; Anonymous Interface vs Lambda Expression(Java“可能尚未初始化空白的最终字段匿名接口与 Lambda 表达式)
                  1. <small id='13buI'></small><noframes id='13buI'>

                      <bdo id='13buI'></bdo><ul id='13buI'></ul>

                        <tbody id='13buI'></tbody>
                        <i id='13buI'><tr id='13buI'><dt id='13buI'><q id='13buI'><span id='13buI'><b id='13buI'><form id='13buI'><ins id='13buI'></ins><ul id='13buI'></ul><sub id='13buI'></sub></form><legend id='13buI'></legend><bdo id='13buI'><pre id='13buI'><center id='13buI'></center></pre></bdo></b><th id='13buI'></th></span></q></dt></tr></i><div id='13buI'><tfoot id='13buI'></tfoot><dl id='13buI'><fieldset id='13buI'></fieldset></dl></div>
                      1. <legend id='13buI'><style id='13buI'><dir id='13buI'><q id='13buI'></q></dir></style></legend>
                            <tfoot id='13buI'></tfoot>