有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java Spring MVC:在tomcat中的@ResponseBody异常处理程序上使用@ResponseStatus(reason='')

有人知道为什么我不能在spring MVC中的异常处理程序上使用@ResponseStatus(reason = "My message"),同时仍然返回@ResponseBody。如果我使用reason属性

// this exception handle works, the result is a 404 and the http body is the json serialised
// {"message", "the message"}
@ExceptionHandler
@ResponseStatus(value = HttpStatus.NOT_FOUND)
public Map<String, String> notFoundHandler(NotFoundException e){
    return Collections.singletonMap("message", e.getMessage());
}

// this doesn't... the response is a 404 and the status line reads 'Really really not found'
// but the body is actually the standard Tomcat 404 page
@ExceptionHandler
@ResponseStatus(value = HttpStatus.NOT_FOUND, reason = "Really really not found")
public Map<String, String> reallyNotFoundHandler(ReallyNotFoundException e){
    return Collections.singletonMap("message", e.getMessage());
}

github上的code for this example已经结束了


共 (1) 个答案

  1. # 1 楼答案

    这似乎是来自AnnotationMethodHandlerExceptionResolver的以下代码的直接结果

    private ModelAndView getModelAndView(Method handlerMethod, Object returnValue, ServletWebRequest webRequest)
            throws Exception {
    
        ResponseStatus responseStatusAnn = AnnotationUtils.findAnnotation(handlerMethod, ResponseStatus.class);
        if (responseStatusAnn != null) {
            HttpStatus responseStatus = responseStatusAnn.value();
            String reason = responseStatusAnn.reason();
            if (!StringUtils.hasText(reason)) {
                // this doesn't commit the response
                webRequest.getResponse().setStatus(responseStatus.value());
            }
            else {
                // this commits the response such that any more calls to write to the 
                // response are ignored
                webRequest.getResponse().sendError(responseStatus.value(), reason);
            }
        }
        /// snip
    }
    

    这已在SPR-8251向Springsource报告: