JAX-RS (Jersey) 自定义异常,包含 XML 或 JSON
我有一个使用泽西岛构建的REST服务。
我希望能够根据发送到服务器的 MIME 设置自定义异常编写器的 MIME。 在收到 json 时返回,并在收到 xml 时返回。application/json
application/xml
现在我硬编码,但这会使XML客户端被遗忘在黑暗中。application/json
public class MyCustomException extends WebApplicationException {
public MyCustomException(Status status, String message, String reason, int errorCode) {
super(Response.status(status).
entity(new ErrorResponseConverter(message, reason, errorCode)).
type("application/json").build());
}
}
我可以利用什么上下文来获取当前请求?Content-Type
谢谢!
基于答案的更新
对于对完整解决方案感兴趣的其他任何人:
public class MyCustomException extends RuntimeException {
private String reason;
private Status status;
private int errorCode;
public MyCustomException(String message, String reason, Status status, int errorCode) {
super(message);
this.reason = reason;
this.status = status;
this.errorCode = errorCode;
}
//Getters and setters
}
与ExceptionMapper
@Provider
public class MyCustomExceptionMapper implements ExceptionMapper<MyCustomException> {
@Context
private HttpHeaders headers;
public Response toResponse(MyCustomException e) {
return Response.status(e.getStatus()).
entity(new ErrorResponseConverter(e.getMessage(), e.getReason(), e.getErrorCode())).
type(headers.getMediaType()).
build();
}
}
其中 ErrorResponseConverter 是一个自定义的 JAXB POJO