我用下一个web.xml创建了一个非常简单的REST应用程序:
<context-param> <param-name>resteasy.scan</param-name> <param-value>true</param-value> </context-param> <listener> <listener-class>org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap</listener-class> </listener> <servlet> <servlet-name>Resteasy</servlet-name> <servlet-class>org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher</servlet-class> </servlet> <servlet-mapping> <servlet-name>Resteasy</servlet-name> <url-pattern>/rest/*</url-pattern> </servlet-mapping>
我正在使用Servlet 3.0规范和Tomcat 7.0.23。不幸的是,它一直失败:
Caused by: java.lang.IllegalArgumentException: Filter mapping must specify either a <url-pattern> or a <servlet-name> at org.apache.catalina.core.StandardContext.validateFilterMap(StandardContext.java:2995) at org.apache.catalina.core.StandardContext.addFilterMap(StandardContext.java:2954)
我不知道问题出在哪里…我不在代码中使用过滤器,该如何解决?
这与RESTEasy问题577有关。为了解决这个问题,你需要添加metadata- complete="true"到<web-app>您的根声明/WEB-INF/web.xml。
metadata- complete="true"
<web-app>
/WEB-INF/web.xml
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0" metadata-complete="true"> <!-- Config here. --> </web-app>
这样,Tomcat会假定SOAP /WEB- INF/web.xml已完成,并且不会在JAR的web.xml片段中扫描其他元数据信息,而这些片段在RESTEasy情况下显然包含错误/不完整声明的过滤器。
/WEB- INF/web.xml
web.xml