从过滤器修改 servlet 的 errorPage 的 HTML
我需要重写 Web 应用程序生成的 HTML。该要求同样适用于所有页面,因此我们很自然地选择了过滤器。
我从有关过滤器的Oracle文档中抄袭了流包装方法这适用于大多数情况。不幸的是,如果 servlet 抛出异常,执行流就会离开我的过滤器,并且不会执行重写逻辑。这意味着错误页面的 HTML 不会被修改。
我也想拦截错误页面响应。我该怎么做?
I have a requirement to rewrite HTML generated by a web application. The requirement applies to all pages equally so naturally we went for a Filter.
I cribbed the stream wrapping approach from this Oracle documentation on filters and this works for most cases. Unfortunately, if the servlet throws an exception the flow of execution leaves my filter and the rewriting logic is not executed. This means the HTML of error pages is not modified.
I want to intercept the error page response as well. How do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将其添加到您的
过滤器映射
中:Try adding this to your
filter-mapping
: