我用xfire-1.2.6开发web service,在xfire与spring集成时运行程序终是抛org.springframework.web.servlet.PageNotFound的异常,我在网上查了好久都没有找到合适的解决办法,请给位帮我看看,哪里出现问题了?
web.xml:
  <?xml version="1.0" encoding="UTF-8"?>
  <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema- instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>WSProject</display-name>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<listener>
               <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
        </listener> <context-param>
             <param-name>log4jConfigLocation</param-name>
             <param-value>/WEB-INF/log4j.properties</param-value>
        </context-param>
<context-param> 
    <param-name>contextConfigLocation</param-name> 
              <param-value>/WEB-INF/applicationContext.xml,classpath:org/codehaus/xfire/spring/xfire.xml</param-value>
        </context-param> <servlet>
            <servlet-name>xfire</servlet-name> 
            <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
            <init-param>
         <param-name>contextConfigLocation</param-name>
         <param-value>classpath:org/codehaus/xfire/spring/xfire.xml,/WEB-INF/applicationContext.xml</param-value>
            </init-param>
        </servlet>
        <servlet-mapping> 
            <servlet-name>xfire</servlet-name> 
            <url-pattern>/*</url-pattern> 
</servlet-mapping> <welcome-file-list>
<welcome-file>jsp/index.jsp</welcome-file>
</welcome-file-list>
</web-app>xfire-servlet.xml:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"><beans> 
    <bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
        <property name="urlMap">
            <map>
                <entry key="/colorTranslationService">
                    <ref bean="xFireExporter"/>
                </entry>
            </map>
        </property>
    </bean>
    
    <bean id="xFireExporter" class="org.codehaus.xfire.spring.remoting.XFireExporter">
        <property name="serviceFactory">
            <ref bean="xfire.serviceFactory"/>
        </property>
        <property name="xfire">
            <ref bean="xfire"/>
        </property>
        <property name="serviceBean">
            <ref bean="colorTranslationServiceImpl"/>
        </property>
        <property name="serviceClass">
         <value>com.webservice.xfire.ColorTranslationService</value>
        </property>
    </bean>
</beans>applicationContext.xml:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"><beans>
<bean id="colorTranslationServiceImpl" class="com.webservice.xfire.impl.ColorTranslationServiceImpl"/>
</beans>以上是我的关于xfire与spring集成的三个相关文件,请给位大侠帮忙看看如何解决WARN [org.springframework.web.servlet.PageNotFound] - No mapping for [/WSProject/] in DispatcherServlet with name 'xfire'这个问题