本文整理匯總了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();
}