从Spring Controller返回错误消息字符串以进行ajax调用的最佳做法是什么?

时间:2018-04-12 05:24:43

标签: ajax spring-mvc error-handling

我有一个Spring控制器,我将返回一个String。基本上我正在使用JSONObject和JSONArray,最后创建一个String并返回它。喜欢:

@RequestMapping(value = "getValue")
    public @ResponseBody
    String getValue(){

    JSONObject jassonObject = new JSONObject();

    JSONArray jassonArray = new JSONArray();

    jassonObject.put("mykey",jassonArray);

    And finally:
    return jassonObject.toString();
}

但是假设在生成此JSONObject时,如果我得到任何异常,我想返回该异常消息。那就是:

try {
JSONObject jassonObject = new JSONObject();

JSONArray jassonArray = new JSONArray();

jassonObject.put("mykey",jassonArray);

return jassonObject.toString();
} catch(Exception ex) {
return the exception?
}

我的问题是如何正确地将此异常值作为错误返回并从ajax调用错误函数中正确获取?

2 个答案:

答案 0 :(得分:1)

Ajax回调处理程序依赖于http状态代码。除200 OK外,将触发错误回叫。每个http状态代码可能有不同的错误处理程序。另外,建议在出现错误时返回非200 OK代码。

请在以下链接中找到示例: How to respond with HTTP 400 error in a Spring MVC @ResponseBody method returning String?

答案 1 :(得分:0)

好的,在学习了一点之后我发现,如果在为Ajax请求生成JSONObject时遇到异常,我们应该使用http Bad Request响应代码进行响应。就像我的情况一样:

try {
JSONObject jassonObject = new JSONObject();

JSONArray jassonArray = new JSONArray();

jassonObject.put("mykey",jassonArray);

return jassonObject.toString();
} catch(Exception ex) {
       jassonObject.put("errorMessageKey", e.getMessage()); // generating      
                                        //json object with error message
         response.setStatus(400); // bad request
         response.setContentType("application/json");
         response.setCharacterEncoding("UTF-8");
         response.getWriter().write(jassonObject.toString()); 
}