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

This commit is contained in:
jacobs 2020-05-04 11:04:11 +08:00
parent 74055a5390
commit 19708ebeb6
1 changed files with 65 additions and 63 deletions

View File

@ -34,10 +34,12 @@ public class WebExceptionResolver implements HandlerExceptionResolver {
// if json // if json
boolean isJson = false; boolean isJson = false;
HandlerMethod method = (HandlerMethod)handler; if (handler instanceof HandlerMethod) {
ResponseBody responseBody = method.getMethodAnnotation(ResponseBody.class); HandlerMethod method = (HandlerMethod)handler;
if (responseBody != null) { ResponseBody responseBody = method.getMethodAnnotation(ResponseBody.class);
isJson = true; if (responseBody != null) {
isJson = true;
}
} }
// error result // error result