getAjaxerror 即使加了 @ResponseBody 注解仍然报 TemplateInputException 异常
org.thymeleaf.exceptions.TemplateInputException: Error resolving template "err/getAjaxerror", template might not exist or might not be accessible by any of the configured Template Resolvers
@RequestMapping("getAjaxerror")
@ResponseBody
public IMoocJSONResult getAjaxerror() {
int a = 1 / 0;
int b = a;
return IMoocJSONResult.ok();
}


