org.springframework.web.servlet.DispatcherServlet noHandlerFound при тестировании через MockMvc

Я определил службу отдыха, используя Spring Mvc 4, а затем протестировал ее через MockMvc. Правильный ответ возвращается, когда я запускаю службу с помощью Tomcat 7 по следующему URL-адресу:

http://localhost:8080/SpringServiceSample/service/greeting/Niharika

Но когда я запускаю тест Junit, я получаю ошибку 404 со следующим в моих журналах:

INFO: FrameworkServlet '': initialization completed in 159 ms
May 18, 2015 12:36:02 PM org.springframework.web.servlet.DispatcherServlet noHandlerFound
WARNING: No mapping found for HTTP request with URI [/service/greeting] in DispatcherServlet with name ''

Ниже приведен код:

SpringServiceController.java

package com.test.springservice.controller;

import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/service/greeting")
public class SpringServiceController {
    @RequestMapping(value = "/{firstName}", method = RequestMethod.GET)
    @ResponseBody
    public String getGreeting(
        @PathVariable String firstName) {
        String result = "Hello " + firstName;
        return result;
    }
}

test-servlet.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc"     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:p="http://www.springframework.org/schema/p"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans     
        http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-4.0.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">
    <context:component-scan base-package="com.test.springservice.controller" />
    <mvc:annotation-driven />
</beans>

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>SpringServiceSample</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
  </welcome-file-list>


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

<servlet-mapping>
    <servlet-name>test</servlet-name>
    <url-pattern>/*</url-pattern>
</servlet-mapping>
</web-app>

SpringServiceControllerTest.java

package com.test.springservice.controller;

import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print;
import static org.springframework.test.web.servlet.setup.MockMvcBuilders.webAppContextSetup;

import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.web.WebAppConfiguration;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
import org.springframework.test.web.servlet.result.MockMvcResultMatchers;
import org.springframework.web.context.WebApplicationContext;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration
@WebAppConfiguration
public class SpringServiceControllerTest {
    @Autowired
    private WebApplicationContext ctx;

    private MockMvc mockMvc;

    @Before
    public void setup() {
        this.mockMvc = webAppContextSetup(ctx).build();
    }

    @Test
    public void testGetGreeting() throws Exception {
        String firstName = "Niharika";
        mockMvc.perform(
            MockMvcRequestBuilders.get("/service/greeting").param(
                    "firstName", firstName))
            .andDo(print())
            .andExpect(MockMvcResultMatchers.status().isOk())
            .andExpect(
                    MockMvcResultMatchers.content().string(
                            "Hello " + firstName));
    }

    @Configuration
    public static class TestConfiguration {
        @Bean
        public SpringServiceController springServiceController() {
            return new SpringServiceController();
        }
    }
}

Пожалуйста, предложите, что я могу делать неправильно здесь.


person Niharika G.    schedule 18.05.2015    source источник
comment
У меня аналогичная проблема, и моя ошибка: [org.springframework.web.servlet.PageNotFound:1136] Не найдено сопоставление для HTTP-запроса с URI [/xhr/ipopt/get] в DispatcherServlet с именем ''. Но я могу правильно получить доступ к этому URL-адресу в браузере   -  person chou    schedule 22.07.2017


Ответы (1)


попробуйте добавить test-servlet.xml к аннотации @ContextConfiguration, то есть

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"classpath*:test-servlet.xml"})
@WebAppConfiguration
public class SpringServiceControllerTest {
    @Autowired
    private WebApplicationContext ctx;

    private MockMvc mockMvc;

Кстати, добавьте <mvc:default-servlet-handler /> в test-servlet.xml

person chou    schedule 22.07.2017