我有一个使用 Jersey 构建的 REST 服务。
我希望能够根据发送到服务器的 MIME 设置自定义异常编写器的 MIME。application/json
接收到json时返回,接收到application/xml
xml时返回。
现在我硬编码application/json
,但这让 XML 客户端一无所知。
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