除了一个servlet之外,还要将所有内容过滤到Struts2? [英] Filter mapping for everything to Struts2 besides one servlet?

查看:128
本文介绍了除了一个servlet之外,还要将所有内容过滤到Struts2?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个Struts2(2.1.8.1)Web应用程序。我的web.xml看起来像,

I have a Struts2 (2.1.8.1) web application. My web.xml looks like,

  <filter>
    <filter-name>struts2</filter-name>
    <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
  </filter>

  <filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>

这被配置为将所有请求映射到struts过滤器。我想在我的Web应用程序中添加一个servlet。我想将具有特定url模式的所有请求发送到该servlet。我希望其他所有内容都转到我的struts servlet。

This is configured to map all requests to the struts filter. I want to add a servlet in my web application. I want to send all requests with a certain url pattern to that servlet. I want everything else to go to my struts servlet.

我知道我只能将* .action映射到struts servlet,但我讨厌.action在我的所有网址的结尾。

I know I could only map "*.action" to the struts servlet, but I hate .action being on the end of all my URL's.

推荐答案

在你的struts.xml中添加:

In your struts.xml add:

<constant name="struts.action.excludePattern" value="/ServletToExcludeFromStruts*"/>

对于多个排除项,该值也以逗号分隔。请参阅 http://struts.apache.org/2.2.1/docs/webxml。 html

The value be comma delimited as well for multiple exclusions. See http://struts.apache.org/2.2.1/docs/webxml.html

这篇关于除了一个servlet之外,还要将所有内容过滤到Struts2?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆