2015-12-15 74 views
0

我試了一切在陽光下得到這個工作..但無濟於事。沒有HanderMapping發現 - 春季3.x - 控制器

春3.0.5 搖籃 的Eclipse 碼頭嵌入式

它是一種簡單的控制器。但我得到No Handler Mapping消息

的web.xml

<display-name>Scheduling</display-name> 

<context-param> 
    <param-name>contextConfigLocation</param-name> 
    <param-value>classpath*:/WEB-INF/spring/sch-rest.xml</param-value> 
</context-param> 

<listener> 
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> 
</listener> 

<!-- Spring MVC --> 
<servlet> 
    <servlet-name>scheduler</servlet-name> 
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> 
    <init-param> 
      <param-name>contextConfigLocation</param-name> 
      <param-value>classpath*:/WEB-INF/spring/sch-rest.xml</param-value> 
    </init-param> 
    <load-on-startup>2</load-on-startup> 
</servlet> 

<servlet-mapping> 
    <servlet-name>scheduler</servlet-name> 
    <url-pattern>/mvc/*</url-pattern> 
</servlet-mapping> 

控制器:

package com.test.sch.controller; 

import org.slf4j.Logger; 
import org.slf4j.LoggerFactory; 
import org.springframework.stereotype.Controller; 
import org.springframework.web.bind.annotation.RequestMapping; 
import org.springframework.web.bind.annotation.RequestMethod; 
import org.springframework.web.bind.annotation.RequestParam; 
import org.springframework.web.bind.annotation.ResponseBody; 

@Controller 
public class TestController { 

    @RequestMapping(value="/job", method=RequestMethod.GET) 
    @ResponseBody 
    public String test(@RequestParam (value = "name", required = false) String name) throws Exception{ 

    System.out.println("name:" + name); 
    return "Yes, I got it, " + name; 
    } 
} 

SCH-rest.xml

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

    <context:component-scan base-package="com.test.sch.controller"/> 
    <mvc:annotation-driven /> 
    <context:annotation-config/> 

</beans> 

戰爭包含此:

WEB=INF\ 
    classes 
     com 
     test 
      sch 
      controller 
       TestController 
    lib 
    <all jars> 
    spring 
     sch-rest.xml 
    web.xml 

碼頭登錄

2015-12-15 16:51:32 INFO o.s.web.context.ContextLoader - Root WebApplicationContext: initialization started 
2015-12-15 16:51:32 INFO o.s.w.c.s.XmlWebApplicationContext - Refreshing Root WebApplicationContext: startup date [Tue Dec 15 16:51:32 CST 2015]; root of context hierarchy 
2015-12-15 16:51:32 DEBUG o.s.b.f.xml.XmlBeanDefinitionReader - Loaded 0 bean definitions from location pattern [classpath*:/WEB-INF/spring/sch-rest.xml] 
2015-12-15 16:51:32 DEBUG o.s.w.c.s.XmlWebApplicationContext - Bean factory for Root WebApplicationContext: org.s[email protected]239e8159: defining beans []; root of factory hierarchy 
2015-12-15 16:51:32 DEBUG o.s.w.c.s.XmlWebApplicationContext - Unable to locate MessageSource with name 'messageSource': using default [[email protected]524d] 
2015-12-15 16:51:32 DEBUG o.s.w.c.s.XmlWebApplicationContext - Unable to locate ApplicationEventMulticaster with name 'applicationEventMulticaster': using default [org.[email protected]245545e3] 
2015-12-15 16:51:32 DEBUG o.s.u.c.s.UiApplicationContextUtils - Unable to locate ThemeSource with name 'themeSource': using default [o[email protected]609b7019] 
2015-12-15 16:51:32 INFO o.s.b.f.s.DefaultListableBeanFactory - Pre-instantiating singletons in org.s[email protected]239e8159: defining beans []; root of factory hierarchy 
2015-12-15 16:51:32 DEBUG o.s.w.c.s.XmlWebApplicationContext - Unable to locate LifecycleProcessor with name 'lifecycleProcessor': using default [[email protected]84aed] 
2015-12-15 16:51:32 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'lifecycleProcessor' 
2015-12-15 16:51:32 DEBUG o.s.web.context.ContextLoader - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] 
2015-12-15 16:51:32 INFO o.s.web.context.ContextLoader - Root WebApplicationContext: initialization completed in 141 ms 
2015-12-15 16:51:33 DEBUG o.s.web.servlet.DispatcherServlet - Initializing servlet 'scheduler' 
2015-12-15 16:51:33 INFO o.s.web.servlet.DispatcherServlet - FrameworkServlet 'scheduler': initialization started 
2015-12-15 16:51:33 DEBUG o.s.web.servlet.DispatcherServlet - Servlet with name 'scheduler' will try to create custom WebApplicationContext context of class 'org.springframework.web.context.support.XmlWebApplicationContext', using parent context [Root WebApplicationContext: startup date [Tue Dec 15 16:51:32 CST 2015]; root of context hierarchy] 
2015-12-15 16:51:33 INFO o.s.w.c.s.XmlWebApplicationContext - Refreshing WebApplicationContext for namespace 'scheduler-servlet': startup date [Tue Dec 15 16:51:33 CST 2015]; parent: Root WebApplicationContext 
2015-12-15 16:51:33 DEBUG o.s.b.f.xml.XmlBeanDefinitionReader - Loaded 0 bean definitions from location pattern [classpath*:/WEB-INF/spring/sch-rest.xml] 
2015-12-15 16:51:33 DEBUG o.s.w.c.s.XmlWebApplicationContext - Bean factory for WebApplicationContext for namespace 'scheduler-servlet': org.s[email protected]6fbf1be2: defining beans []; parent: org.s[email protected]239e8159 
2015-12-15 16:51:33 DEBUG o.s.w.c.s.XmlWebApplicationContext - Unable to locate MessageSource with name 'messageSource': using default [[email protected]5e35] 
2015-12-15 16:51:33 DEBUG o.s.w.c.s.XmlWebApplicationContext - Unable to locate ApplicationEventMulticaster with name 'applicationEventMulticaster': using default [org.[email protected]22b8299c] 
2015-12-15 16:51:33 DEBUG o.s.u.c.s.UiApplicationContextUtils - Unable to locate ThemeSource with name 'themeSource': using default [[email protected]3d292] 
2015-12-15 16:51:33 INFO o.s.b.f.s.DefaultListableBeanFactory - Pre-instantiating singletons in org.s[email protected]6fbf1be2: defining beans []; parent: org.s[email protected]239e8159 
2015-12-15 16:51:33 DEBUG o.s.w.c.s.XmlWebApplicationContext - Unable to locate LifecycleProcessor with name 'lifecycleProcessor': using default [[email protected]c5a4f1] 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'lifecycleProcessor' 
2015-12-15 16:51:33 DEBUG o.s.web.servlet.DispatcherServlet - Unable to locate MultipartResolver with name 'multipartResolver': no multipart request handling provided 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver' 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver' 
2015-12-15 16:51:33 DEBUG o.s.web.servlet.DispatcherServlet - Unable to locate LocaleResolver with name 'localeResolver': using default [[email protected]6685657] 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.web.servlet.theme.FixedThemeResolver' 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.web.servlet.theme.FixedThemeResolver' 
2015-12-15 16:51:33 DEBUG o.s.web.servlet.DispatcherServlet - Unable to locate ThemeResolver with name 'themeResolver': using default [[email protected]1] 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping' 
2015-12-15 16:51:33 DEBUG o.s.w.s.h.BeanNameUrlHandlerMapping - Looking for URL mappings in application context: WebApplicationContext for namespace 'scheduler-servlet': startup date [Tue Dec 15 16:51:33 CST 2015]; parent: Root WebApplicationContext 
2015-12-15 16:51:33 DEBUG o.s.w.s.h.BeanNameUrlHandlerMapping - Rejected bean name 'servletConfig': no URL paths identified 
2015-12-15 16:51:33 DEBUG o.s.w.s.h.BeanNameUrlHandlerMapping - Rejected bean name 'messageSource': no URL paths identified 
2015-12-15 16:51:33 DEBUG o.s.w.s.h.BeanNameUrlHandlerMapping - Rejected bean name 'applicationEventMulticaster': no URL paths identified 
2015-12-15 16:51:33 DEBUG o.s.w.s.h.BeanNameUrlHandlerMapping - Rejected bean name 'lifecycleProcessor': no URL paths identified 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping' 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping' 
2015-12-15 16:51:33 DEBUG o.s.w.s.m.a.DefaultAnnotationHandlerMapping - Looking for URL mappings in application context: WebApplicationContext for namespace 'scheduler-servlet': startup date [Tue Dec 15 16:51:33 CST 2015]; parent: Root WebApplicationContext 
2015-12-15 16:51:33 DEBUG o.s.w.s.m.a.DefaultAnnotationHandlerMapping - Rejected bean name 'servletConfig': no URL paths identified 
2015-12-15 16:51:33 DEBUG o.s.w.s.m.a.DefaultAnnotationHandlerMapping - Rejected bean name 'messageSource': no URL paths identified 
2015-12-15 16:51:33 DEBUG o.s.w.s.m.a.DefaultAnnotationHandlerMapping - Rejected bean name 'applicationEventMulticaster': no URL paths identified 
2015-12-15 16:51:33 DEBUG o.s.w.s.m.a.DefaultAnnotationHandlerMapping - Rejected bean name 'lifecycleProcessor': no URL paths identified 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping' 
2015-12-15 16:51:33 DEBUG o.s.web.servlet.DispatcherServlet - No HandlerMappings found in servlet 'scheduler': using default 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter' 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter' 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter' 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter' 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter' 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter' 
2015-12-15 16:51:33 DEBUG o.s.web.servlet.DispatcherServlet - No HandlerAdapters found in servlet 'scheduler': using default 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerExceptionResolver' 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerExceptionResolver' 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver' 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver' 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver' 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver' 
2015-12-15 16:51:33 DEBUG o.s.web.servlet.DispatcherServlet - No HandlerExceptionResolvers found in servlet 'scheduler': using default 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator' 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator' 
2015-12-15 16:51:33 DEBUG o.s.web.servlet.DispatcherServlet - Unable to locate RequestToViewNameTranslator with name 'viewNameTranslator': using default [org.spri[email protected]42208e15] 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.web.servlet.view.InternalResourceViewResolver' 
2015-12-15 16:51:33 DEBUG o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.web.servlet.view.InternalResourceViewResolver' 
2015-12-15 16:51:33 DEBUG o.s.web.servlet.DispatcherServlet - No ViewResolvers found in servlet 'scheduler': using default 
2015-12-15 16:51:33 DEBUG o.s.web.servlet.DispatcherServlet - Published WebApplicationContext of servlet 'scheduler' as ServletContext attribute with name [org.springframework.web.servlet.FrameworkServlet.CONTEXT.scheduler] 
2015-12-15 16:51:33 INFO o.s.web.servlet.DispatcherServlet - FrameworkServlet 'scheduler': initialization completed in 141 ms 
2015-12-15 16:51:33 DEBUG o.s.web.servlet.DispatcherServlet - Servlet 'scheduler' configured successfully 

更新1:

刪除了從web.xml中

<context-param> 
    <param-name>contextConfigLocation</param-name> 
    <param-value>classpath*:/WEB-INF/spring/sch-rest.xml</param-value> 
</context-param> 

<listener> 
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> 
</listener> 
+1

你爲什麼要加載你的彈簧配置文件兩次? –

+0

我最初正在加載一次...但我看到一些其他例子試圖這樣做。所以我也這樣做了。我嘗試了太多的東西來解決這個問題。但無濟於事。我只有一個上下文文件。 –

+1

您的'ContextLoaderListener'和'DispatcherServlet'都被設置爲從相同的'xml'文件初始化它們相應的'ApplicationContext'。擺脫你的'ContextLoaderListener'。你不需要它。 –

回答

1

下你應該做的第一件事就是刪除您ContextLoaderListener聲明及其context-param配置。目前,您正試圖加載sch-rest.xml文件兩次,一次用於ContextLoaderListenerWebApplicationContext,一次用於DispatcherServlet。這是不必要的,多餘的,並且在註冊@Controller處理程序方法時可能實際上會導致問題。瞭解更多關於這兩者之間的差別,在這裏:

您目前有以下

<init-param> 
    <param-name>contextConfigLocation</param-name> 
    <param-value>classpath*:/WEB-INF/spring/sch-rest.xml</param-value> 
</init-param> 

前綴classpath*:wildcard prefix,試圖加載任何和所有的類路徑它在指定的路徑中找到的資源,如果沒有找到任何資源,它將不會出錯。這很可能發生在這裏。

您的程序奠定了像

WEB=INF\ 
    [...] 
    spring 
     sch-rest.xml 

,我覺得不太可能,上面的是你的類路徑中。

您可以簡單地指定(不classpath*:

<init-param> 
    <param-name>contextConfigLocation</param-name> 
    <param-value>/WEB-INF/spring/sch-rest.xml</param-value> 
</init-param> 

和Spring MVC將使用ServletContext解決的配置。

+0

太棒了!再次感謝。 –