我按照demo搭建完了cxf之后出现这样的错误我怀疑是因为filter-mapping中的url-pattern的冲突了.
web.xml配置如下.
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" 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_2_5.xsd">
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:cngrideye-config.xml</param-value>
</context-param>
<listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <servlet>
<servlet-name>CXFServlet</servlet-name>
<servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet> <servlet-mapping>
<servlet-name>CXFServlet</servlet-name>
<url-pattern>/services1/*</url-pattern>
</servlet-mapping>
<!-- 静态URL
 要放在struts2过滤器前面.
-->
<filter>   
    <filter-name>UrlRewriteFilter</filter-name>   
    <filter-class>   
        org.tuckey.web.filters.urlrewrite.UrlRewriteFilter   
    </filter-class>   
    <init-param>   
        <param-name>logLevel</param-name>   
        <param-value>WARN</param-value>   
    </init-param>   
</filter>   
<filter-mapping>   
    <filter-name>UrlRewriteFilter</filter-name>   
    <url-pattern>/*</url-pattern>
</filter-mapping>  
 
<filter>
<filter-name>struts2</filter-name>
<!-- 
<filter-class>
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
 -->
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>

</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
<dispatcher>REQUEST</dispatcher>     
        <dispatcher>FORWARD</dispatcher>     
        <dispatcher>INCLUDE</dispatcher>    
<!-- 
<url-pattern>*.action</url-pattern>
<url-pattern>*.jsp</url-pattern> 
-->
</filter-mapping>




<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<login-config>
<auth-method>BASIC</auth-method>
</login-config>
 
</web-app>urlrewrite配置如下.
<rule>
        <note>
            The rule means that requests to /test/status/ will be redirected to /rewrite-status
            the url will be rewritten.
        </note>
        <from>^/([a-zA-Z]+)/([0-9a-zA-Z]+)$</from>  
        <to type="forward">$1_$2.action</to>
        <!-- 
        <to type="forward">user_loginUser.action?user.username=admin&amp;user.password=admin</to>
         -->
        
    </rule>