ContainerRequestfilter

ContainerRequestfilter

为了验证api密钥,我使用了ContainerRequestFilter来读取JSON有效负载并解析api密钥。我有以下方法。

public ContainerRequest filter(ContainerRequest request) {

ByteArrayOutputStream out = new ByteArrayOutputStream();
    InputStream in = request.getEntityInputStream();
    try {
        int read;
        final byte[] data = new byte[2048];
        while ((read = in.read(data)) != -1)
            out.write(data, 0, read);

        byte[] requestEntity = out.toByteArray();

        request.setEntityInputStream(new ByteArrayInputStream(requestEntity));

        if (!validate(new String(data))) {
            throw new WebApplicationException(401);
        }

        return request;
    } catch (IOException ex) {
        throw new WebApplicationException(401);
    }
}


但是,数据总是空白/空。如果没有过滤器,则有效负载将到达资源类,并且工作正常。关于有效载荷为何为空的任何线索?我正在使用带有JSON的Firefox REST Client进行测试。

最佳答案

我想你想打电话

validate(new String(requestEntity))


代替

validate(new String(data))


因为在第二种情况下,您可以获得无效的JSON(如果您的有效载荷足够大)。

另外,您可能需要考虑使用MessageBodyReaders为您读取实体:

public ContainerRequest filter(ContainerRequest request) {
    // Buffer
    InputStream in = request.getEntityInputStream();
    if (in.getClass() != ByteArrayInputStream.class) {
        // Buffer input
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        try {
            ReaderWriter.writeTo(in, baos);
        } catch (IOException ex) {
            throw new ContainerException(ex);
        }
        in = new ByteArrayInputStream(baos.toByteArray());
        request.setEntityInputStream(in);
    }

    // Read entity as a string.
    final String entity = request.getEntity(String.class);

    if (!validate(entity) {
        throw new WebApplicationException(401);
    }

    // Reset buffer
    ByteArrayInputStream bais = (ByteArrayInputStream)in;
    bais.reset();

    return request;
}

关于java - Jersey ContainerRequestFilter获取空的entitystream,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17738035/

10-10 01:08