除了一个servlet之外,还要将所有内容映射到Struts2?

时间:2010-10-01 23:01:34

标签: java struts2 servlet-filters

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

  <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。

我知道我只能将“* .action”映射到struts servlet,但我讨厌.action位于我所有URL的末尾。

1 个答案:

答案 0 :(得分:13)

在你的struts.xml中添加:

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

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