我有一个扩展了ExceptionHandlerExceptionResolver
的全局异常处理程序,该处理程序处理了从我的@RestController
引发的异常。响应中返回的JSON有效负载包括“ exception”字段。例如
{
"timestamp": 01010101010101
"exception": <some exception class>
}
从spring-webmvc
4.3.22.RELEASE
升级到5.0.8.RELEASE
后,exception
字段丢失。知道这是Spring的变化,还是我的代码?
答案 0 :(得分:0)
找到了。 server.error.include-exception
默认为假。将其设置为true会重新引入这种行为。