如何将内容输出到HttpServletResponse缓冲区?

时间:2017-12-08 20:32:32

标签: spring servlets junit httpresponse mockmvc

我使用的是Spring 4.3.8.RELEASE。我想为特定的Forbidden错误设置错误消息。我在控制器中有这个。 "响应"属于" javax.servlet.HttpServletResponse"。

        response.setStatus(HttpServletResponse.SC_FORBIDDEN);
        response.setContentLength(errorMsg.length());
        byte[] buffer = new byte[10240];
        final OutputStream output = response.getOutputStream();
        output.write(buffer, 0, errorMsg.length());
        output.flush();

然而,内容似乎没有被退回,至少我在单元测试中看不到...

    final MvcResult result = mockMvc.perform(get(contextPath + "/myurl") 
                    .contextPath(contextPath)
                    .principal(auth)
                    .param("param1", param1)
                    .param("param2", param2))
        .andExpect(status().isForbidden())
        .andReturn();
    // Verify the error message is correct
    final String msgKey = "error.code";
    final String errorMsg = MessageFormat.format(resourceBundle.getString(msgKey), new Object[] {});
    Assert.assertEquals("Failed to return proper error message.", errorMsg, result.getResponse().getContentAsString()); 

断言失败,说响应字符串为空。什么是将响应写回HttpServletResponse缓冲区的正确方法?

3 个答案:

答案 0 :(得分:2)

您永远不会将var myCollectionOfItems = new RadioToCheckbox($(".items") );写入errorMsgoutput

这样的东西
buffer

应解决问题

答案 1 :(得分:0)

您可以使用响应实体

@RequestMapping("/handle")
public ResponseEntity<String> handle() {

   HttpHeaders responseHeaders = new HttpHeaders();
   responseHeaders.setLocation(location);
   responseHeaders.set("MyResponseHeader", "MyValue");
   return new ResponseEntity<String>("Hello World", responseHeaders, HttpStatus.FORBIDDEN);
 }

Spring Response Entity

答案 2 :(得分:0)

一个好处是throw自定义异常,将HttpServletResponse作为参数传递或使用已存在的异常之一(如果它适用于您的用例),以便在外部处理错误控制器方法(单独关注,被认为是一种良好做法)。

如果没有,您可以直接在控制器方法中设置响应。

因此,在这两种情况下,您都可以使用HttpServletResponse s sendError方法,如下所示:

// your controller (or exception) method
    try {
        response.sendError(HttpStatus.FORBIDEN.value(), "My custom error message")
        } catch (IOException e) {
    // handle if error could not be sent
        }
    }

这将打印出一个字符串作为所需HttpStatus的响应。

此外,这里还有一些老人,而且是黄金的。有关Spring异常处理的信息here