为了账号安全,请及时绑定邮箱和手机立即绑定

抛出一个 Error resolving template template might not exist or might not be accessible 的异常

在ajax的异常处理中,直接返回IMoocJSONResult是不行的,会再抛出一个

Error resolving template template might not exist or might not be accessible 的异常,而不是我们预想的byZero的异常,这时候需要使用MappingJackson2HttpMessageConverter把IMoocJSONResult手动写入 HttpServletResponse中。

 

private static final String ERROR_VIEW = "error";

@Autowired

private MappingJackson2HttpMessageConverter jsonConverter;

   

@ExceptionHandler(value = Exception.class)

public Object error(HttpServletRequest request, HttpServletResponse response, Exception e) throws HttpMessageNotWritableException, IOException {

if(isAjax(request)) {

MyJSONResult result = MyJSONResult.errorException(e.getMessage());

            jsonConverter.write(result, MediaType.APPLICATION_JSON, new ServletServerHttpResponse(response));

            return null;

} else {

ModelAndView mav = new ModelAndView();

mav.addObject("exception",e);

mav.addObject("url", request.getRequestURL());

mav.setViewName(ERROR_VIEW);

return mav;

}

}


正在回答

13 回答

优秀,学习了

0 回复 有任何疑惑可以回复我~

是的,学习了

0 回复 有任何疑惑可以回复我~

不赖、学习了

0 回复 有任何疑惑可以回复我~
首页上一页12下一页尾页

举报

0/150
提交
取消

抛出一个 Error resolving template template might not exist or might not be accessible 的异常

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信