我有一个 JAX-RS Web 服务,它返回一个接受 JSON 请求参数(映射到 Parameter 对象),如下所示(它在 WebLogic 12.2.1 中运行)。是否可以编写拦截器或过滤器,以便在调用 Web 服务时,它会在 JSON 请求消息中添加一个额外的字段,以便下面的方法将在 requestParameters 中获取该额外字段?

@POST
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
@Path("LogIn")
public Response logIn(@Context HttpServletRequest request, Parameters requestParameters) {...}

谢谢!

最佳答案

拦截器

它可以通过拦截器来实现。

拦截器旨在通过操纵实体输入/输出流来操纵实体。有两种拦截器, ReaderInterceptor WriterInterceptor

读取器拦截器用于操作入站实体流。这些是来自“电线”的流。因此,使用读取器拦截器,您可以在服务器端操作请求实体流。 Writer 拦截器用于将实体写入“线路”的情况,这在服务器上意味着在写出响应实体时

以下拦截器实现了 ReaderInterceptor 接口(interface),允许您在服务器端修改请求的实体:

@Provider
public class CustomReaderInterceptor implements ReaderInterceptor {

    @Override
    public Object aroundReadFrom(ReaderInterceptorContext context)
                      throws IOException, WebApplicationException {

        InputStream stream = context.getInputStream();

        // Manipulate the HTTP entity using the InputStream

        context.setInputStream(stream);
        return context.proceed();
    }
}

请注意上面的拦截器是全局的,即对所有资源方法都会执行。

使用 Jackson 时,您的 ReaderInterceptor#aroundReadFrom(ReaderInterceptorContext) 方法实现可能如下所示:

// Create a Jackson ObjectMapper instance (it can be injected instead)
ObjectMapper mapper = new ObjectMapper();

// Parse the requested entity into a JSON tree
JsonNode tree = mapper.readTree(context.getInputStream());

// Add a property to the JSON
((ObjectNode) tree).put("field", "value");

// Set the input stream containing the manipulated JSON
context.setInputStream(new ByteArrayInputStream(mapper.writeValueAsBytes(tree)));

// Proceed to the next interceptor in the chain
context.proceed();

名称绑定(bind)

要仅为一些精选的资源方法执行拦截器,您可以使用名称绑定(bind)。

名称绑定(bind)是一个概念,它允许对 JAX-RS 运行时说特定的过滤器或拦截器将仅针对特定的资源方法执行。当过滤器或拦截器仅限于特定的资源方法时,我们说它是名称绑定(bind)的。

可以使用 @NameBinding 注释将过滤器分配给资源方法。该注释用作其他用户实现的注释的元注释,这些注释应用于提供者和资源方法。

名称绑定(bind)注解可以定义如下(注解的名称由您决定):

@NameBinding
@Retention(RUNTIME)
@Target({TYPE, METHOD})
public @interface CustomizeResponse { }

将上面定义的注解放在你的拦截器类上:

@Provider
@CustomizeResponse
public class CustomReaderInterceptor implements ReaderInterceptor {
    ...
}

要将拦截器分配给资源方法,请将上面定义的注释放在资源方法上:

@GET
@CustomizeResponse
@Produces(MediaType.APPLICATION_JSON)
public Response myMethod() {
    ...
}

名称绑定(bind)也可以应用于资源类。这意味着拦截器将针对该资源类的所有资源方法执行:

@Path("/foo")
@CustomizeResponse
public class MyResource() {
    ...
}

请注意,始终执行全局过滤器和拦截器,因此即使对于具有任何名称绑定(bind)注释的资源方法也是如此。

其他资源

有关拦截器的更多详细信息,请查看 Jersey documentation

关于json - 拦截 JAX-RS Web 服务请求以添加 JSON 字段,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36542366/

10-12 22:28