Spring WebMVC异常处理

时间:2019-03-11 19:50:31

标签: rest spring-boot spring-mvc exception spring-web

我有一个扩展了ExceptionHandlerExceptionResolver的全局异常处理程序,该处理程序处理了从我的@RestController引发的异常。响应中返回的JSON有效负载包括“ exception”字段。例如

{
     "timestamp": 01010101010101
     "exception": <some exception class>
}

spring-webmvc 4.3.22.RELEASE升级到5.0.8.RELEASE后,exception字段丢失。知道这是Spring的变化,还是我的代码?

1 个答案:

答案 0 :(得分:0)

找到了。 server.error.include-exception默认为假。将其设置为true会重新引入这种行为。