我使用下一个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)
我无法想象问题出在哪里......我的代码中没有使用过滤器,我该如何解决?
答案 0 :(得分:12)
这与RESTEasy issue 577有关。要解决此问题,您需要将metadata-complete="true"
添加到<web-app>
的{{1}}根声明中。
/WEB-INF/web.xml
这样Tomcat将假设<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>
已完成,并且不会扫描JAR以获取/WEB-INF/web.xml
片段中的其他元数据信息,这些信息在RESTEasy的情况下显然包含错误/未完全声明的过滤器。< / p>
答案 1 :(得分:0)
当然,添加'metadata-complete =“true”'会阻止任何其他jar对web.xml做出贡献,包括RichFaces和Seam。最好从部署中排除有问题的JAR文件。就我而言,冒犯了async-http-servlet-3.0-2.3.3.Final.jar。
答案 2 :(得分:0)
这是Tomcat 7中的错误(版本&lt; 7.0.28),that reply查看类似问题,linked Tomcat 7 bugzilla ticket。