我有一个休息服务会引发异常,我想知道处理这个问题的最佳方法是什么。
所以我有一个休息服务,可以抛出一个用户定义的异常,我在catch块中捕获并再次抛出异常!并使用rest框架来捕获它。同样适用于非用户定义的异常。我认为这会很好,因为我有许多休息服务,所有userdefinedexception代码处理将在同一个地方。
我想知道这是在休息服务中处理异常的正确方法吗?
我正在使用球衣。
// rest service @POST public void doSomething() { try { // ... some piece of code that can throw user defined exception as well as runtime exception } catch(UserDefinedException e) { throws new UserDefinedException(e); } catch(Exception e) { throws new ServiceException(e); } // Now I have a @Provider to catch this thrown exception @Provider public class UserDefinedExceptionHandler implements ExceptionMapper { public Response toResponse(UserDefinedException exception) { ClientResponse clientResponse = new ClientResponse(); ResponseStatus status = new ResponseStatus(); clientResponse = handleUserDefinedException(exception, status, clientResponse); return Response.ok(clientResponse).build(); } // similarly for the ServiceException
答案 0 :(得分:5)
只是在服务器上引发错误500没有提供有关错误的详细信息,优雅地处理错误的一种方法是将响应数据包装在具有状态和数据的结构中,如果状态为错误,则显示正确消息。
json格式的这样的东西:
{
"status": "error",
"data": {
"message": "detailed error message"
}
}
答案 1 :(得分:1)
处理REST服务中的异常与处理任何其他代码中的异常没有太大区别。
唯一的“约定”是,如果客户端发送错误数据触发异常,则返回HTTP 400,当服务意外失败时触发500.