servlet 过滤器优先级
由于过滤器是一个接一个链接的,因此我不知道何时删除 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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/.