本文整理汇总了Java中javax.ws.rs.core.Response.fromResponse方法的典型用法代码示例。如果您正苦于以下问题:Java Response.fromResponse方法的具体用法?Java Response.fromResponse怎么用?Java Response.fromResponse使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.ws.rs.core.Response
的用法示例。
在下文中一共展示了Response.fromResponse方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: toResponse
import javax.ws.rs.core.Response; //导入方法依赖的package包/类
@SuppressWarnings("nls")
@Override
public Response toResponse(Throwable t)
{
final WebApplicationException webAppException = mapException(t);
Response response = webAppException.getResponse();
final int status = response.getStatus();
if( status >= 500 )
{
LOGGER.error("REST API error", t);
}
if( response.getEntity() == null )
{
ResponseBuilder builder = Response.fromResponse(response);
response = builder.entity(convertExceptionToJsonResponse(response.getStatus(), webAppException))
.type(MediaType.APPLICATION_JSON).build();
}
return response;
}
示例2: toResponse
import javax.ws.rs.core.Response; //导入方法依赖的package包/类
@Override
public Response toResponse(@NonNull Exception exception) {
ResponseBuilder builder;
StatusType statusInfo;
if (exception instanceof WebApplicationException) {
Response response = ((WebApplicationException) exception).getResponse();
builder = Response.fromResponse(response);
statusInfo = response.getStatusInfo();
} else {
builder = Response.serverError();
statusInfo = Status.INTERNAL_SERVER_ERROR;
}
SimpleExceptionJson simpleExceptionJson = new SimpleExceptionJson(statusInfo.getReasonPhrase(),
statusInfo.getStatusCode(), exception.getMessage());
builder.entity(simpleExceptionJson);
builder.type("application/problem+json");
if (statusInfo.getFamily() == Family.CLIENT_ERROR) {
log.debug("Got client Exception", exception);
} else {
log.error("Sending error to client", exception);
}
return builder.build();
}