MockMvc HttpMediaTypeNotSupportedException:内容类型' application / json'不支持

时间:2017-06-14 20:54:38

标签: json testing spring-boot integration-testing mockmvc

我收到以下例外:

org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'application/json' not supported

    at org.springframework.web.bind.annotation.support.HandlerMethodInvoker.readWithMessageConverters(HandlerMethodInvoker.java:653)
    at org.springframework.web.bind.annotation.support.HandlerMethodInvoker.resolveRequestBody(HandlerMethodInvoker.java:612)
    at org.springframework.web.bind.annotation.support.HandlerMethodInvoker.resolveHandlerArguments(HandlerMethodInvoker.java:361)
    at org.springframework.web.bind.annotation.support.HandlerMethodInvoker.invokeHandlerMethod(HandlerMethodInvoker.java:175)
    at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.invokeHandlerMethod(AnnotationMethodHandlerAdapter.java:440)
    at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.handle(AnnotationMethodHandlerAdapter.java:428)
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:661)
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
    at org.springframework.test.web.servlet.TestDispatcherServlet.service(TestDispatcherServlet.java:65)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
    at org.springframework.mock.web.MockFilterChain$ServletFilterProxy.doFilter(MockFilterChain.java:167)
    at org.springframework.mock.web.MockFilterChain.doFilter(MockFilterChain.java:134)

我的测试如下:

public class AvailabilityControllerTest extends BaseTest {   
    @Test
    public void createAvailability() throws Exception {
        final String createAvailabilityEndPoint = "/api/v4/companies/123/availabilities";
        final String responseName = "availabilityResponseDTO";

        AvailabilityDTO availabilityDTO = new AvailabilityDTO();

        MvcResult mvcResult = mockMvc.perform(
                MockMvcRequestBuilders.post(createAvailabilityEndPoint)
                        .contentType(MediaType.APPLICATION_JSON_VALUE)
                        .accept(MediaType.APPLICATION_JSON_VALUE)
                        .content(new ObjectMapper().writeValueAsString(availabilityDTO)))
                .andExpect(MockMvcResultMatchers.status().isCreated())
                .andReturn();
    }

使用BaseTest:

@RunWith(SpringRunner.class)
@SpringBootTest(classes = TestConfiguration.class)
@AutoConfigureMockMvc
public class BaseTest {

    @Autowired
    protected MockMvc mockMvc;

}

TestConfiguration看起来像这样:

@Configuration
@ComponentScan(
        basePackages = "com.app",
        excludeFilters = {
                @ComponentScan.Filter(type = FilterType.ASSIGNABLE_TYPE, classes = App.class)
        }
)
public class TestConfiguration {

    @Bean
    public ErrorAttributes errorAttributes() {
        return new DefaultErrorAttributes();
    }
}

AvailabilityController看起来像这样:

@RestController
@RequestMapping("/api/v4/companies")
public class AvailabilityController {

    public static final String ACCEPT_APP_JSON = "Accept=" + AcceptableMediaType.APPLICATION_JSON;

    @Autowired
    private AvailabilityFacade availabilityFacade;

@RequestMapping(value = "/{companyId}/employees/{employeeId}/availabilities", method = RequestMethod.GET)
    public List<AvailabilityEventResponseDTO> getUserAvailabilities(@PathVariable String companyId,
                                                                    @PathVariable String employeeId) {
        return availabilityFacade.getUserAvailabilities(employeeId);
    }

    @RequestMapping(value = "/{companyId}/availabilities", method = RequestMethod.POST, headers = ACCEPT_APP_JSON, consumes = MediaType.APPLICATION_JSON_VALUE)
    public ResponseEntity<AvailabilityResponseDTO> createAvailability(@PathVariable String companyId,
                                                                      @Valid @RequestBody AvailabilityDTO availabilityDTO) {
        return new ResponseEntity<>(
                availabilityFacade.createAvailability(companyId, availabilityDTO),
                HttpStatus.CREATED
        );
    }
}

基本上GET请求适用于MockMvc,但POST不支持并返回此HttpMediaTypeNotSupportedException。我试图在请求和控制器中添加和删除接受和内容类型的标头,这似乎不起作用。

此问题似乎与Spring integration test with mockmvc throws org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'application/json' not supported有关,但在这种情况下删除TestConfiguration中的excludeFilters不允许Spring解释上下文。另外,我不确定Karl R的意思是什么,包括我的课程路径上的服务器运行时间&#34;。

感谢任何帮助。

2 个答案:

答案 0 :(得分:2)

我认为您应该将@EnableWebMvc添加到TestConfiguration。

 Index List1  List2

   0  1000   -500

   1  900    -200

   2  600    100

   3  400    250

   4  200    400

   5  100    500

   6  50     1500

答案 1 :(得分:1)

就我而言,问题是我没有设置 contentType,因此将其设置为 JSON 类型解决了我的问题。

...
.contentType(MediaType.APPLICATION_JSON)
...