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

pull/22/MERGE
jacobs 5 years ago
parent 74055a5390
commit 19708ebeb6

@ -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/>"));

Loading…
Cancel
Save