我正在使用struts2构建一个应用程序。 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>
应用程序运行正常。现在我有一个需要来自servlet的输入的JSP,所以我编写了一个servlet并在web.xml中添加了servlet-mapping,但由于filter-mapping,服务器无法找到servlet。 如何在struts 2中使用servlet以及web.xml应该是什么样的?
来自:http://struts-2.464677.n5.nabble.com/using-servlets-in-a-struts-2-project-td465399.html
答案 0 :(得分:2)
已解决!,Filter mapping for everthing to Struts2 besides one servlet?和http://struts.apache.org/2.2.1/docs/webxml.html
答案 1 :(得分:1)
应该从struts.xml中的Struts过滤器中排除那个特定的servlet