我有一个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的末尾。
答案 0 :(得分:13)
在你的struts.xml中添加:
<constant name="struts.action.excludePattern" value="/ServletToExcludeFromStruts*"/>
对于多个排除项,该值也以逗号分隔。见http://struts.apache.org/2.2.1/docs/webxml.html