diff --git a/src/main/java/cokr/xit/foundation/web/ExceptionController.java b/src/main/java/cokr/xit/foundation/web/ExceptionController.java index 1d6a20c..d848c0c 100644 --- a/src/main/java/cokr/xit/foundation/web/ExceptionController.java +++ b/src/main/java/cokr/xit/foundation/web/ExceptionController.java @@ -29,7 +29,7 @@ public class ExceptionController extends AbstractController { } protected ModelAndView toErrorPage(HttpServletRequest hreq, Object status, String msgKey) { - Object disp = hreq.getRequestDispatcher("error/errorPage"); + Object disp = hreq != null ? hreq.getRequestDispatcher("error/errorPage") : null; String viewName = disp != null ? "error/errorPage" : "jsonView" ; return new ModelAndView(viewName) .addObject("json", "jsonView".equals(viewName) || ajaxRequest() || jsonResponse())