提交 19708ebe authored 作者: jacobs's avatar jacobs

fixed: handler 可能为非HandlerMethod 类型的异常

上级 74055a53
......@@ -34,11 +34,13 @@ public class WebExceptionResolver implements HandlerExceptionResolver {
// if json
boolean isJson = false;
if (handler instanceof HandlerMethod) {
HandlerMethod method = (HandlerMethod)handler;
ResponseBody responseBody = method.getMethodAnnotation(ResponseBody.class);
if (responseBody != null) {
isJson = true;
}
}
// error result
ReturnT<String> errorResult = new ReturnT<String>(ReturnT.FAIL_CODE, ex.toString().replaceAll("\n", "<br/>"));
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论