2014-11-25 144 views
0

当我和春天3.0.1我的应用程序运行良好的工作,错误弹簧3.1.2

当我把它chenged 3.1.2现在我hiting URL-http://localhost:8080/nated /迁移时收到错误

2014年11月25日下午6点43分02秒org.springframework.web.servlet.DispatcherServlet noHandlerFound 警告:否的DispatcherServlet找到HTTP请求与URI [/ NAT的/迁移]名为 '调度'

映射这里是调度员servlet-

<?xml version="1.0" encoding="UTF-8"?> 
<beans xmlns="http://www.springframework.org/schema/beans" 
    xmlns:context="http://www.springframework.org/schema/context" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:mvc="http://www.springframework.org/schema/mvc" 
    xsi:schemaLocation=" 

    http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd 
     http://www.springframework.org/schema/beans  
     http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
     http://www.springframework.org/schema/context 
     http://www.springframework.org/schema/context/spring-context-3.0.xsd"> 

    <context:component-scan base-package="com.nated.app.migration.controller" /> 
    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> 
     <property name="prefix" value="/WEB-INF/natedjsp/"/> 
     <property name="suffix" value=".jsp"/> 
    </bean> 
    <mvc:resources mapping="/resources/**" location="/resources/css/" /> 
</beans> 

请提出一些解决方法。

,这里是我的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_2_5.xsd" 
    version="2.5"> 

    <display-name>migration</display-name> 

    <servlet> 
     <servlet-name>dispatcher</servlet-name> 
     <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> 
     <load-on-startup>1</load-on-startup> 
    </servlet> 

    <servlet-mapping> 
     <servlet-name>dispatcher</servlet-name> 
     <url-pattern>/</url-pattern> 
    </servlet-mapping> 

    <context-param> 
     <param-name>contextConfigLocation</param-name> 
     <param-value>/WEB-INF/application-context.xml</param-value> 
    </context-param> 
<!-- Creates the Spring Container shared by all Servlets and Filters --> 
    <listener> 
     <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> 
    </listener> 
</web-app> 

以前的应用程序正在运行的精绝3.0.1我改成了3.1.2,支持MVC:资源,但现在它给错误现在

回答

0

其解决我在调度程序servlet中缺少<mvc:annotation-driven />