必须按 F5 才能在 fire-fox 上调用 bean
我遇到了一些奇怪的问题, 我有一个按钮,它的操作是调用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要告诉浏览器不要缓存动态 JSP 页面。您可以通过创建映射到所需 URL 模式的
Filter
来实现此目的,并在doFilter()
方法中执行以下操作: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 indoFilter()
method: