必须按 F5 才能在 fire-fox 上调用 bean

发布于 2025-01-07 20:40:56 字数 128 浏览 0 评论 0原文

我遇到了一些奇怪的问题, 我有一个按钮,它的操作是调用 bean 的某种方法,将我转发到其他页面,但它不起作用(它不调用该方法),除非我按 F5 ,但问题只存在于火中 -福克斯,例如在互联网浏览器中它的工作很棒,有人知道如何解决它吗? 谢谢。

I have encountered some wierd problem,
I have a button that its action is to call to some method of bean which forward me to other page, but its's not working (it doesn't calls the method) unless i'm pressing F5 , but the problem exists only in fire-fox, for example in internet explorer its working greate, someone have any idea how to solve it?
thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谎言月老 2025-01-14 20:40:56

您需要告诉浏览器不要缓存动态 JSP 页面。您可以通过创建映射到所需 URL 模式的 Filter 来实现此目的,并在 doFilter() 方法中执行以下操作:

@Override
public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain) throws IOException, ServletException {
    HttpServletResponse response = (HttpServletResponse) res;
    response.setHeader("Cache-Control", "no-cache, no-store, must-revalidate"); // HTTP 1.1.
    response.setHeader("Pragma", "no-cache"); // HTTP 1.0.
    response.setDateHeader("Expires", 0); // Proxies.
    chain.doFilter(req, res);
}

You need to tell the browser to not cache dynamic JSP pages. You can achieve this by creating a Filter which is mapped on the desired URL pattern and does the following in doFilter() method:

@Override
public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain) throws IOException, ServletException {
    HttpServletResponse response = (HttpServletResponse) res;
    response.setHeader("Cache-Control", "no-cache, no-store, must-revalidate"); // HTTP 1.1.
    response.setHeader("Pragma", "no-cache"); // HTTP 1.0.
    response.setDateHeader("Expires", 0); // Proxies.
    chain.doFilter(req, res);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文