当前位置: 首页>>代码示例>>Java>>正文


Java ContainerException类代码示例

本文整理汇总了Java中com.sun.jersey.api.container.ContainerException的典型用法代码示例。如果您正苦于以下问题:Java ContainerException类的具体用法?Java ContainerException怎么用?Java ContainerException使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


ContainerException类属于com.sun.jersey.api.container包,在下文中一共展示了ContainerException类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: toResponse

import com.sun.jersey.api.container.ContainerException; //导入依赖的package包/类
/**
 * Maps different exceptions thrown by HttpFSServer to HTTP status codes.
 * <ul>
 * <li>SecurityException : HTTP UNAUTHORIZED</li>
 * <li>FileNotFoundException : HTTP NOT_FOUND</li>
 * <li>IOException : INTERNAL_HTTP SERVER_ERROR</li>
 * <li>UnsupporteOperationException : HTTP BAD_REQUEST</li>
 * <li>all other exceptions : HTTP INTERNAL_SERVER_ERROR </li>
 * </ul>
 *
 * @param throwable exception thrown.
 *
 * @return mapped HTTP status code
 */
@Override
public Response toResponse(Throwable throwable) {
  Response.Status status;
  if (throwable instanceof FileSystemAccessException) {
    throwable = throwable.getCause();
  }
  if (throwable instanceof ContainerException) {
    throwable = throwable.getCause();
  }
  if (throwable instanceof SecurityException) {
    status = Response.Status.UNAUTHORIZED;
  } else if (throwable instanceof FileNotFoundException) {
    status = Response.Status.NOT_FOUND;
  } else if (throwable instanceof IOException) {
    status = Response.Status.INTERNAL_SERVER_ERROR;
  } else if (throwable instanceof UnsupportedOperationException) {
    status = Response.Status.BAD_REQUEST;
  } else if (throwable instanceof IllegalArgumentException) {
    status = Response.Status.BAD_REQUEST;
  } else {
    status = Response.Status.INTERNAL_SERVER_ERROR;
  }
  return createResponse(status, throwable);
}
 
开发者ID:naver,项目名称:hadoop,代码行数:39,代码来源:HttpFSExceptionProvider.java

示例2: toResponse

import com.sun.jersey.api.container.ContainerException; //导入依赖的package包/类
/**
 * Maps different exceptions thrown by HttpFSServer to HTTP status codes.
 * <p/>
 * <ul>
 * <li>SecurityException : HTTP UNAUTHORIZED</li>
 * <li>FileNotFoundException : HTTP NOT_FOUND</li>
 * <li>IOException : INTERNAL_HTTP SERVER_ERROR</li>
 * <li>UnsupporteOperationException : HTTP BAD_REQUEST</li>
 * <li>all other exceptions : HTTP INTERNAL_SERVER_ERROR </li>
 * </ul>
 *
 * @param throwable exception thrown.
 *
 * @return mapped HTTP status code
 */
@Override
public Response toResponse(Throwable throwable) {
  Response.Status status;
  if (throwable instanceof FileSystemAccessException) {
    throwable = throwable.getCause();
  }
  if (throwable instanceof ContainerException) {
    throwable = throwable.getCause();
  }
  if (throwable instanceof SecurityException) {
    status = Response.Status.UNAUTHORIZED;
  } else if (throwable instanceof FileNotFoundException) {
    status = Response.Status.NOT_FOUND;
  } else if (throwable instanceof IOException) {
    status = Response.Status.INTERNAL_SERVER_ERROR;
  } else if (throwable instanceof UnsupportedOperationException) {
    status = Response.Status.BAD_REQUEST;
  } else if (throwable instanceof IllegalArgumentException) {
    status = Response.Status.BAD_REQUEST;
  } else {
    status = Response.Status.INTERNAL_SERVER_ERROR;
  }
  return createResponse(status, throwable);
}
 
开发者ID:Nextzero,项目名称:hadoop-2.6.0-cdh5.4.3,代码行数:40,代码来源:HttpFSExceptionProvider.java

示例3: toResponse

import com.sun.jersey.api.container.ContainerException; //导入依赖的package包/类
/**
 * Maps different exceptions thrown by HttpFSServer to HTTP status codes.
 * <p/>
 * <ul>
 * <li>SecurityException : HTTP UNAUTHORIZED</li>
 * <li>FileNotFoundException : HTTP NOT_FOUND</li>
 * <li>IOException : INTERNAL_HTTP SERVER_ERROR</li>
 * <li>UnsupporteOperationException : HTTP BAD_REQUEST</li>
 * <li>all other exceptions : HTTP INTERNAL_SERVER_ERROR </li>
 * </ul>
 *
 * @param throwable
 *     exception thrown.
 * @return mapped HTTP status code
 */
@Override
public Response toResponse(Throwable throwable) {
  Response.Status status;
  if (throwable instanceof FileSystemAccessException) {
    throwable = throwable.getCause();
  }
  if (throwable instanceof ContainerException) {
    throwable = throwable.getCause();
  }
  if (throwable instanceof SecurityException) {
    status = Response.Status.UNAUTHORIZED;
  } else if (throwable instanceof FileNotFoundException) {
    status = Response.Status.NOT_FOUND;
  } else if (throwable instanceof IOException) {
    status = Response.Status.INTERNAL_SERVER_ERROR;
  } else if (throwable instanceof UnsupportedOperationException) {
    status = Response.Status.BAD_REQUEST;
  } else if (throwable instanceof IllegalArgumentException) {
    status = Response.Status.BAD_REQUEST;
  } else {
    status = Response.Status.INTERNAL_SERVER_ERROR;
  }
  return createResponse(status, throwable);
}
 
开发者ID:hopshadoop,项目名称:hops,代码行数:40,代码来源:HttpFSExceptionProvider.java

示例4: safelyGetContent

import com.sun.jersey.api.container.ContainerException; //导入依赖的package包/类
/**
 * Under normal circumstances, the body of the request can only be read once, because it is
 * backed by an {@code InputStream}, and thus is not easily consumed multiple times. This
 * method gets the request content and resets it so it can be read again later if necessary.
 */
private byte[] safelyGetContent(HttpRequestContext request) {
    ContainerRequest containerRequest = (ContainerRequest) request;
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    InputStream in = containerRequest.getEntityInputStream();

    try {
        ReaderWriter.writeTo(in, out);
        byte[] content = out.toByteArray();

        // Reset the input stream so that it can be read again by another filter or resource
        containerRequest.setEntityInputStream(new ByteArrayInputStream(content));
        return content;

    } catch (IOException ex) {
        throw new ContainerException(ex);
    }
}
 
开发者ID:bazaarvoice,项目名称:jersey-hmac-auth,代码行数:23,代码来源:RequestDecoder.java

示例5: validate

import com.sun.jersey.api.container.ContainerException; //导入依赖的package包/类
private void validate(ContainerRequest request) {
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    InputStream in = request.getEntityInputStream();
    try {
        ReaderWriter.writeTo(in, out);
        byte[] requestEntity = out.toByteArray();
        ByteArrayInputStream bais =
                new ByteArrayInputStream(requestEntity);
        request.setEntityInputStream(bais);
        String entity = new String(requestEntity, ReaderWriter
                .getCharset(request.getMediaType()));
        if (entity.isEmpty()) {
            throw new WebApplicationException(Status.BAD_REQUEST);
        }
        JsonNode tree;
        try {
            tree = reader.readTree(entity);
        } catch (JsonParseException e) {
            throw new WebApplicationException(e, Status.BAD_REQUEST);
        }
        JSONSchemaResourceFilterFactory.this.validate(tree, schema);
    } catch (IOException ex) {
        throw new ContainerException(ex);
    }
}
 
开发者ID:enviroCar,项目名称:enviroCar-server,代码行数:26,代码来源:JSONSchemaResourceFilterFactory.java

示例6: toResponse

import com.sun.jersey.api.container.ContainerException; //导入依赖的package包/类
/**
 * Maps different exceptions thrown by KMS to HTTP status codes.
 */
@Override
public Response toResponse(Exception exception) {
  Response.Status status;
  boolean doAudit = true;
  Throwable throwable = exception;
  if (exception instanceof ContainerException) {
    throwable = exception.getCause();
  }
  if (throwable instanceof SecurityException) {
    status = Response.Status.FORBIDDEN;
  } else if (throwable instanceof AuthenticationException) {
    status = Response.Status.FORBIDDEN;
    // we don't audit here because we did it already when checking access
    doAudit = false;
  } else if (throwable instanceof AuthorizationException) {
    status = Response.Status.FORBIDDEN;
    // we don't audit here because we did it already when checking access
    doAudit = false;
  } else if (throwable instanceof AccessControlException) {
    status = Response.Status.FORBIDDEN;
  } else if (exception instanceof IOException) {
    status = Response.Status.INTERNAL_SERVER_ERROR;
    log(status, throwable);
  } else if (exception instanceof UnsupportedOperationException) {
    status = Response.Status.BAD_REQUEST;
  } else if (exception instanceof IllegalArgumentException) {
    status = Response.Status.BAD_REQUEST;
  } else {
    status = Response.Status.INTERNAL_SERVER_ERROR;
    log(status, throwable);
  }
  if (doAudit) {
    KMSWebApp.getKMSAudit().error(KMSMDCFilter.getUgi(),
        KMSMDCFilter.getMethod(),
        KMSMDCFilter.getURL(), getOneLineMessage(exception));
  }
  return createResponse(status, throwable);
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:42,代码来源:KMSExceptionsProvider.java

示例7: toResponse

import com.sun.jersey.api.container.ContainerException; //导入依赖的package包/类
/**
 * Maps different exceptions thrown by KMS to HTTP status codes.
 */
@Override
public Response toResponse(Exception exception) {
  Response.Status status;
  boolean doAudit = true;
  Throwable throwable = exception;
  if (exception instanceof ContainerException) {
    throwable = exception.getCause();
  }
  if (throwable instanceof SecurityException) {
    status = Response.Status.FORBIDDEN;
  } else if (throwable instanceof AuthenticationException) {
    status = Response.Status.FORBIDDEN;
    // we don't audit here because we did it already when checking access
    doAudit = false;
  } else if (throwable instanceof AuthorizationException) {
    status = Response.Status.FORBIDDEN;
    // we don't audit here because we did it already when checking access
    doAudit = false;
  } else if (throwable instanceof AccessControlException) {
    status = Response.Status.FORBIDDEN;
  } else if (exception instanceof IOException) {
    status = Response.Status.INTERNAL_SERVER_ERROR;
  } else if (exception instanceof UnsupportedOperationException) {
    status = Response.Status.BAD_REQUEST;
  } else if (exception instanceof IllegalArgumentException) {
    status = Response.Status.BAD_REQUEST;
  } else {
    status = Response.Status.INTERNAL_SERVER_ERROR;
  }
  if (doAudit) {
    KMSWebApp.getKMSAudit().error(KMSMDCFilter.getUgi(),
        KMSMDCFilter.getMethod(),
        KMSMDCFilter.getURL(), getOneLineMessage(exception));
  }
  return createResponse(status, throwable);
}
 
开发者ID:naver,项目名称:hadoop,代码行数:40,代码来源:KMSExceptionsProvider.java

示例8: createContainer

import com.sun.jersey.api.container.ContainerException; //导入依赖的package包/类
@Override
public NettyContainer createContainer(Class<NettyContainer> type, ResourceConfig resourceConfig,
                                      WebApplication application) throws ContainerException {
    Preconditions.checkNotNull(type);
    Preconditions.checkNotNull(application);
    if (!type.equals(NettyContainer.class)) {
        logger.error(
                "Netty container provider can only create container of type {}. Invoked to create container of type {}",
                NettyContainer.class.getName(), type.getName());
    }
    return new NettyContainer(application);
}
 
开发者ID:Netflix,项目名称:karyon,代码行数:13,代码来源:NettyContainerProvider.java

示例9: createContainer

import com.sun.jersey.api.container.ContainerException; //导入依赖的package包/类
public NettyHandlerContainer createContainer(Class<NettyHandlerContainer> clazz, ResourceConfig config,WebApplication webApp)
           throws ContainerException {
	if (clazz != NettyHandlerContainer.class) {
		return null;
	}
	return new NettyHandlerContainer(webApp, config);
}
 
开发者ID:Netflix,项目名称:recipes-rss,代码行数:8,代码来源:JerseyContainerProvider.java

示例10: toResponse

import com.sun.jersey.api.container.ContainerException; //导入依赖的package包/类
@Override
public Response toResponse(Exception e) {
  if (LOG.isTraceEnabled()) {
    LOG.trace("GOT EXCEPITION", e);
  }

  //clear content type
  response.setContentType(null);

  //Convert exception
  if (e instanceof ParamException) {
    final ParamException paramexception = (ParamException)e;
    e = new IllegalArgumentException("Invalid value for webhdfs parameter \""
        + paramexception.getParameterName() + "\": "
        + e.getCause().getMessage(), e);
  }
  if (e instanceof ContainerException) {
    e = toCause(e);
  }
  if (e instanceof RemoteException) {
    e = ((RemoteException)e).unwrapRemoteException();
  }

  if (e instanceof SecurityException) {
    e = toCause(e);
  }
  
  //Map response status
  final Response.Status s;
  if (e instanceof SecurityException) {
    s = Response.Status.FORBIDDEN;
  } else if (e instanceof AuthorizationException) {
    s = Response.Status.FORBIDDEN;
  } else if (e instanceof FileNotFoundException) {
    s = Response.Status.NOT_FOUND;
  } else if (e instanceof IOException) {
    s = Response.Status.FORBIDDEN;
  } else if (e instanceof UnsupportedOperationException) {
    s = Response.Status.BAD_REQUEST;
  } else if (e instanceof IllegalArgumentException) {
    s = Response.Status.BAD_REQUEST;
  } else {
    LOG.warn("INTERNAL_SERVER_ERROR", e);
    s = Response.Status.INTERNAL_SERVER_ERROR;
  }
 
  final String js = JsonUtil.toJsonString(e);
  return Response.status(s).type(MediaType.APPLICATION_JSON).entity(js).build();
}
 
开发者ID:naver,项目名称:hadoop,代码行数:50,代码来源:ExceptionHandler.java

示例11: exceptionCaught

import com.sun.jersey.api.container.ContainerException; //导入依赖的package包/类
static DefaultFullHttpResponse exceptionCaught(Throwable cause) {
  Exception e = cause instanceof Exception ? (Exception) cause : new Exception(cause);

  if (LOG.isTraceEnabled()) {
    LOG.trace("GOT EXCEPITION", e);
  }

  //Convert exception
  if (e instanceof ParamException) {
    final ParamException paramexception = (ParamException)e;
    e = new IllegalArgumentException("Invalid value for webhdfs parameter \""
                                       + paramexception.getParameterName() + "\": "
                                       + e.getCause().getMessage(), e);
  } else if (e instanceof ContainerException || e instanceof SecurityException) {
    e = toCause(e);
  } else if (e instanceof RemoteException) {
    e = ((RemoteException)e).unwrapRemoteException();
  }

  //Map response status
  final HttpResponseStatus s;
  if (e instanceof SecurityException) {
    s = FORBIDDEN;
  } else if (e instanceof AuthorizationException) {
    s = FORBIDDEN;
  } else if (e instanceof FileNotFoundException) {
    s = NOT_FOUND;
  } else if (e instanceof IOException) {
    s = FORBIDDEN;
  } else if (e instanceof UnsupportedOperationException) {
    s = BAD_REQUEST;
  } else if (e instanceof IllegalArgumentException) {
    s = BAD_REQUEST;
  } else {
    LOG.warn("INTERNAL_SERVER_ERROR", e);
    s = INTERNAL_SERVER_ERROR;
  }

  final byte[] js = JsonUtil.toJsonString(e).getBytes(Charsets.UTF_8);
  DefaultFullHttpResponse resp =
    new DefaultFullHttpResponse(HTTP_1_1, s, Unpooled.wrappedBuffer(js));

  resp.headers().set(CONTENT_TYPE, APPLICATION_JSON_UTF8);
  resp.headers().set(CONTENT_LENGTH, js.length);
  return resp;
}
 
开发者ID:naver,项目名称:hadoop,代码行数:47,代码来源:ExceptionHandler.java

示例12: exceptionCaught

import com.sun.jersey.api.container.ContainerException; //导入依赖的package包/类
static DefaultFullHttpResponse exceptionCaught(Throwable cause) {
  Exception e = cause instanceof Exception ? (Exception) cause : new Exception(cause);

  if (LOG.isTraceEnabled()) {
    LOG.trace("GOT EXCEPTION", e);
  }

  //Convert exception
  if (e instanceof ParamException) {
    final ParamException paramexception = (ParamException)e;
    e = new IllegalArgumentException("Invalid value for webhdfs parameter \""
                                       + paramexception.getParameterName() + "\": "
                                       + e.getCause().getMessage(), e);
  } else if (e instanceof ContainerException || e instanceof SecurityException) {
    e = toCause(e);
  } else if (e instanceof RemoteException) {
    e = ((RemoteException)e).unwrapRemoteException();
  }

  //Map response status
  final HttpResponseStatus s;
  if (e instanceof SecurityException) {
    s = FORBIDDEN;
  } else if (e instanceof AuthorizationException) {
    s = FORBIDDEN;
  } else if (e instanceof FileNotFoundException) {
    s = NOT_FOUND;
  } else if (e instanceof IOException) {
    s = FORBIDDEN;
  } else if (e instanceof UnsupportedOperationException) {
    s = BAD_REQUEST;
  } else if (e instanceof IllegalArgumentException) {
    s = BAD_REQUEST;
  } else {
    LOG.warn("INTERNAL_SERVER_ERROR", e);
    s = INTERNAL_SERVER_ERROR;
  }

  final byte[] js = JsonUtil.toJsonString(e).getBytes(Charsets.UTF_8);
  DefaultFullHttpResponse resp =
    new DefaultFullHttpResponse(HTTP_1_1, s, Unpooled.wrappedBuffer(js));

  resp.headers().set(CONTENT_TYPE, APPLICATION_JSON_UTF8);
  resp.headers().set(CONTENT_LENGTH, js.length);
  return resp;
}
 
开发者ID:aliyun-beta,项目名称:aliyun-oss-hadoop-fs,代码行数:47,代码来源:ExceptionHandler.java

示例13: toResponse

import com.sun.jersey.api.container.ContainerException; //导入依赖的package包/类
@Override
public Response toResponse(Exception e) {
  if (LOG.isTraceEnabled()) {
    LOG.trace("GOT EXCEPITION", e);
  }

  //clear content type
  response.setContentType(null);

  //Convert exception
  if (e instanceof ParamException) {
    final ParamException paramexception = (ParamException)e;
    e = new IllegalArgumentException("Invalid value for webhdfs parameter \""
        + paramexception.getParameterName() + "\": "
        + e.getCause().getMessage(), e);
  }
  if (e instanceof ContainerException) {
    e = toCause(e);
  }
  if (e instanceof RemoteException) {
    e = ((RemoteException)e).unwrapRemoteException();
  }

  //Map response status
  final Response.Status s;
  if (e instanceof SecurityException) {
    s = Response.Status.UNAUTHORIZED;
  } else if (e instanceof AuthorizationException) {
    s = Response.Status.UNAUTHORIZED;
  } else if (e instanceof FileNotFoundException) {
    s = Response.Status.NOT_FOUND;
  } else if (e instanceof IOException) {
    s = Response.Status.FORBIDDEN;
  } else if (e instanceof UnsupportedOperationException) {
    s = Response.Status.BAD_REQUEST;
  } else if (e instanceof IllegalArgumentException) {
    s = Response.Status.BAD_REQUEST;
  } else {
    LOG.warn("INTERNAL_SERVER_ERROR", e);
    s = Response.Status.INTERNAL_SERVER_ERROR;
  }
 
  final String js = JsonUtil.toJsonString(e);
  return Response.status(s).type(MediaType.APPLICATION_JSON).entity(js).build();
}
 
开发者ID:ict-carch,项目名称:hadoop-plus,代码行数:46,代码来源:ExceptionHandler.java

示例14: toResponse

import com.sun.jersey.api.container.ContainerException; //导入依赖的package包/类
@Override
public Response toResponse(Exception e) {
  if (LOG.isTraceEnabled()) {
    LOG.trace("GOT EXCEPITION", e);
  }

  //clear content type
  response.setContentType(null);

  //Convert exception
  if (e instanceof ParamException) {
    final ParamException paramexception = (ParamException) e;
    e = new IllegalArgumentException(
        "Invalid value for webhdfs parameter \"" +
            paramexception.getParameterName() + "\": " +
            e.getCause().getMessage(), e);
  }
  if (e instanceof ContainerException) {
    e = toCause(e);
  }
  if (e instanceof RemoteException) {
    e = ((RemoteException) e).unwrapRemoteException();
  }

  //Map response status
  final Response.Status s;
  if (e instanceof SecurityException) {
    s = Response.Status.UNAUTHORIZED;
  } else if (e instanceof AuthorizationException) {
    s = Response.Status.UNAUTHORIZED;
  } else if (e instanceof FileNotFoundException) {
    s = Response.Status.NOT_FOUND;
  } else if (e instanceof IOException) {
    s = Response.Status.FORBIDDEN;
  } else if (e instanceof UnsupportedOperationException) {
    s = Response.Status.BAD_REQUEST;
  } else if (e instanceof IllegalArgumentException) {
    s = Response.Status.BAD_REQUEST;
  } else {
    LOG.warn("INTERNAL_SERVER_ERROR", e);
    s = Response.Status.INTERNAL_SERVER_ERROR;
  }

  final String js = JsonUtil.toJsonString(e);
  return Response.status(s).type(MediaType.APPLICATION_JSON).entity(js)
      .build();
}
 
开发者ID:hopshadoop,项目名称:hops,代码行数:48,代码来源:ExceptionHandler.java

示例15: testSaveDocumentUnknownObject

import com.sun.jersey.api.container.ContainerException; //导入依赖的package包/类
@Test(expected = ContainerException.class)
public void testSaveDocumentUnknownObject() throws Exception {
    client().resource("/v1/document/" + TestUtils.TEST_TABLE_NAME).type(MediaType.APPLICATION_JSON_TYPE).post("hello");
}
 
开发者ID:Flipkart,项目名称:foxtrot,代码行数:5,代码来源:DocumentResourceTest.java


注:本文中的com.sun.jersey.api.container.ContainerException类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。