servlet 过滤器优先级

发布于 2024-11-19 01:47:02 字数 193 浏览 1 评论 0原文

由于过滤器是一个接一个链接的,因此我不知道何时删除 MDC/NDC (log4j) 信息。 最顶层的 Servlet 过滤器是哪个?

我在deploy/jboss-portal-ha.sar/portal-server.war/WEB-INF/Web.xml中定义了一个 和其他几个分布在应用程序服务器周围。

在这种情况下,优先规则是什么?

Since since filters are chained one after another, I cannot know when to remove MDC/NDC (log4j) information.
Which is the topmost servlet filter?

I have one defined inside deploy/jboss-portal-ha.sar/portal-server.war/WEB-INF/Web.xml
and several others spread around the application server.

What's the rule of precedence in this case?

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

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

发布评论

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

评论(1

冷夜 2024-11-26 01:47:02

Servlet 过滤器按照它们在 web.xml 中定义的顺序链接起来,并且应该特定于每个 Web 应用程序上下文 - 这几乎总是与 Web 应用程序存档 (WAR) 同义。

有关所使用的确切顺序的详细信息(同时考虑 元素)记录在 Java Servlet 规范中“SRV.6.2.4 Web 应用程序中的过滤器配置”,可从以下位置下载:http://download.oracle.com/otndocs/jcp/ servlet-2.5-mrel2-eval-oth-JSpec/

Servlet filters are chained in the order that they are defined within your web.xml, and should be specific to each web application context - which is almost always synonymous with a web application archive (WAR).

Details around the exact ordering used (which takes both the <url-pattern> and <servlet-name> elements into account) are documented in the Java Servlet Specification under "SRV.6.2.4 Configuration of Filters in a Web Application", available for download at http://download.oracle.com/otndocs/jcp/servlet-2.5-mrel2-eval-oth-JSpec/.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文