以JSON格式返回Jersey例外的最佳方法是什么? 这是我的示例代码。
public static class CompoThngExceptionMapper implements ExceptionMapper<Exception> {
@Override
public Response toResponse(Exception exception) {
if (exception instanceof WebApplicationException) {
WebApplicationException e = (WebApplicationException) exception;
Response r = e.getResponse();
return Response.status(r.getStatus()).entity(**HERE JSON**).build();
} else {
return null;
}
}
提前致谢!!!
答案 0 :(得分:9)
取决于您想要返回的内容,但我个人有一个ErrorInfo
对象看起来像这样:
public class ErrorInfo {
final transient String developerMessage;
final transient String userMessage;
// Getters/setters/initializer
}
我作为Exception
的一部分传递,然后我只使用Jackson的ObjectMapper
从ErrorInfo
中的ExceptionMapper
对象创建一个JSON字符串。这种方法的好处在于您可以非常轻松地扩展它,因此添加状态信息,错误时间等等,只是添加另一个字段的情况。
请记住,添加诸如响应状态之类的东西有点浪费,因为无论如何它都会回到HTTP头中。
<强>更新强>
如下所示的完整示例(在这种情况下,ErrorInfo中包含更多字段,但您可以得到一般的想法):
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.ResponseBuilder;
import javax.ws.rs.core.Response.Status;
import javax.ws.rs.ext.ExceptionMapper;
import javax.ws.rs.ext.Provider;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
@Provider
public class UnexpectedExceptionMapper implements ExceptionMapper<Exception>
{
private static final transient ObjectMapper MAPPER = new ObjectMapper();
@Override
public Response toResponse(final Exception exception)
{
ResponseBuilder builder = Response.status(Status.BAD_REQUEST)
.entity(defaultJSON(exception))
.type(MediaType.APPLICATION_JSON);
return builder.build();
}
private String defaultJSON(final Exception exception)
{
ErrorInfo errorInfo = new ErrorInfo(null, exception.getMessage(), exception.getMessage(), (String)null);
try
{
return MAPPER.writeValueAsString(errorInfo);
}
catch (JsonProcessingException e)
{
return "{\"message\":\"An internal error occurred\"}";
}
}
}
答案 1 :(得分:7)
避免导入Jackson类但只坚持纯JAX-RS类我创建了像这样的json异常包装。
创建ExceptionInfo包装器并子类化各种异常状态类型。
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlAccessorType(XmlAccessType.PUBLIC_MEMBER)
@XmlRootElement
public class ExceptionInfo {
private int status;
private String msg, desc;
public ExceptionInfo(int status, String msg, String desc) {
this.status=status;
this.msg=msg;
this.desc=desc;
}
@XmlElement public int getStatus() { return status; }
@XmlElement public String getMessage() { return msg; }
@XmlElement public String getDescription() { return desc; }
}
- - - -
import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.Status;
import javax.ws.rs.WebApplicationException;
/**
* Create 404 NOT FOUND exception
*/
public class NotFoundException extends WebApplicationException {
private static final long serialVersionUID = 1L;
public NotFoundException() {
this("Resource not found", null);
}
/**
* Create a HTTP 404 (Not Found) exception.
* @param message the String that is the entity of the 404 response.
*/
public NotFoundException(String msg, String desc) {
super(Response.status(Status.NOT_FOUND).entity(
new ExceptionInfo(Status.NOT_FOUND.getStatusCode(), msg, desc)
).type("application/json").build());
}
}
然后在资源实现中抛出异常,客户端收到一个很好的json格式的http错误体。
@Path("/properties")
public class PropertyService {
...
@GET @Path("/{key}")
@Produces({"application/json;charset=UTF-8"})
public Property getProperty(@PathParam("key") String key) {
// 200=OK(json obj), 404=NotFound
Property bean = DBUtil.getProperty(key);
if (bean==null) throw new NotFoundException();
return bean;
}
...
}
- - - -
Content-Type: application/json
{"status":404,"message":"Resource not found","description":null}