6

Json コントローラーをテストしようとして、次の例外 org.springframework.web.HttpMediaTypeNotSupportedException が発生しています。

コントローラーのメソッドは次のとおりです。

@RequestMapping(value = "/report", method = RequestMethod.PUT)
    public @ResponseBody DatosJsonVO report(@RequestHeader(value = "hash", required = true) String hash,
            @RequestBody ReportVO report) {
}

私のテスト方法は次のとおりです。

@Test
    public void reportarPreguntaSesionInvalida() throws Exception { 
        ReportVO report = new ReportVO();
        report.setIdQuestion(1);
        report.setIssue("Wrong answer");
        mockMvc.perform(put("/json/report").header("hash", "123456789")
                .accept(MediaType.APPLICATION_JSON).content(asJsonString(report))).andDo(print())
                .andExpect(content().string("{\"code\":2,\"message\":\"Session error\",\"data\":null}"));
    }

しかし、私はこの応答を得ます:

MockHttpServletRequest:
         HTTP Method = PUT
         Request URI = /json/report
          Parameters = {}
             Headers = {hash=[8.16615469E8], Accept=[application/json]}
             Handler:
                Type = com.controller.json.QuestionsJsonController
               Async:
   Was async started = false
        Async result = null
  Resolved Exception:
                Type = org.springframework.web.HttpMediaTypeNotSupportedException
        ModelAndView:
           View name = null
                View = null
               Model = null
            FlashMap:
MockHttpServletResponse:
              Status = 415
       Error message = null
             Headers = {}
        Content type = null
                Body = 
       Forwarded URL = null
      Redirected URL = null
             Cookies = []

私の春のバージョンは 4.0.0.RELEASE です

4

2 に答える 2

3

コンテンツ タイプを設定する必要があります。

 mockMvc.perform(put("/json/report")
.header("hash", "123456789")
.accept(MediaType.APPLICATION_JSON)
.contentType(MediaType.APPLICATION_JSON_VALUE)
.content(asJsonString(report))).andDo(print())
.andExpect(content().string("{\"code\":2,\"message\":\"Session error\",\"data\":null}"));
于 2017-06-09T19:08:51.477 に答える