【问题标题】:Logging request and response in one place with JAX-RS使用 JAX-RS 在一处记录请求和响应
【发布时间】:2016-02-13 11:31:18
【问题描述】:

我有一个带有很多方法的 RESTEasy Web 服务器。我想实现 logback 来跟踪所有请求和响应,但我不想将log.info() 添加到每个方法中。

也许有办法在一个地方捕获请求和响应并记录下来。可能类似于 RESTEasy 上的 HTTP 请求流程链上的过滤器。

@Path("/rest")
@Produces("application/json")
public class CounterRestService {

    //Don't want use log in controler every method to track requests and responces
    static final Logger log = LoggerFactory.getLogger(CounterRestService.class); 

    @POST
    @Path("/create")
    public CounterResponce create(@QueryParam("name") String name) {
        log.info("create "+name)
        try {
            CounterService.getInstance().put(name);
            log.info("responce data"); // <- :((
            return new CounterResponce();
        } catch (Exception e){
            log.info("responce error data"); // <- :((
            return new CounterResponce("error", e.getMessage());
        }    
    }

    @POST
    @Path("/insert")
    public CounterResponce create(Counter counter) {
        try {
            CounterService.getInstance().put(counter);
            return new CounterResponce();
        } catch (Exception e){
            return new CounterResponce("error", e.getMessage());
        }
    }

    ...
}

【问题讨论】:

标签: java rest jax-rs resteasy


【解决方案1】:

您可以创建过滤器并轻松地将它们绑定到您需要记录的端点,从而使您的端点保持精简并专注于业务逻辑。

定义名称绑定注解

为了将过滤器绑定到您的 REST 端点,JAX-RS 提供了元注释@NameBinding,它可以按如下方式使用:

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

记录 HTTP 请求

@Logged 注解将用于装饰一个过滤器类,它实现了ContainerRequestFilter,让您可以处理请求:

@Logged
@Provider
public class RequestLoggingFilter implements ContainerRequestFilter {

    @Override
    public void filter(ContainerRequestContext requestContext) throws IOException {
        // Use the ContainerRequestContext to extract information from the HTTP request
        // Information such as the URI, headers and HTTP entity are available
    }
}

@Provider 注释标记了扩展接口的实现,在提供程序扫描阶段应该可以被 JAX-RS 运行时发现。

ContainerRequestContext 帮助您从 HTTP 请求中提取信息。

以下是来自 ContainerRequestContext API 的方法,用于从 HTTP 请求中获取对您的日志有用的信息:

记录 HTTP 响应

要记录响应,请考虑实现ContainerResponseFilter

@Logged
@Provider
public class ResponseLoggingFilter implements ContainerResponseFilter {

    @Override
    public void filter(ContainerRequestContext requestContext, 
                       ContainerResponseContext responseContext) throws IOException {
        // Use the ContainerRequestContext to extract information from the HTTP request
        // Use the ContainerResponseContext to extract information from the HTTP response
    }
}

ContainerResponseContext 帮助您从 HTTP 响应中提取信息。

以下是来自ContainerResponseContext API 的一些方法,用于从 HTTP 响应中获取对您的日志有用的信息:

将过滤器绑定到您的端点

要将过滤器绑定到您的端点方法或类,请使用上面定义的@Logged 注释对其进行注释。对于被注释的方法和/或类,过滤器将被执行:

@Path("/")
public class MyEndpoint {

    @GET
    @Path("{id}")
    @Produces("application/json")
    public Response myMethod(@PathParam("id") Long id) {
        // This method is not annotated with @Logged
        // The logging filters won't be executed when invoking this method
        ...
    }

    @DELETE
    @Logged
    @Path("{id}")
    @Produces("application/json")
    public Response myLoggedMethod(@PathParam("id") Long id) {
        // This method is annotated with @Logged
        // The request logging filter will be executed before invoking this method
        // The response logging filter will be executed before invoking this method
        ...
    }
}

在上面的示例中,日志过滤器将仅针对 myLoggedMethod(Long) 执行,因为它带有 @Logged 注释。

其他信息

除了ContainerRequestContextContainerResponseFilter 接口中可用的方法外,您还可以使用@Context 在过滤器中注入ResourceInfo

@Context
ResourceInfo resourceInfo;

它可以用来获取与请求的URL匹配的MethodClass

Class<?> resourceClass = resourceInfo.getResourceClass();
Method resourceMethod = resourceInfo.getResourceMethod();

HttpServletRequestHttpServletResponse 也可用于注入:

@Context
HttpServletRequest httpServletRequest;

@Context
HttpServletResponse httpServletResponse;

可以参考answer@Context注入的类型。

【讨论】:

  • 如何打印 ContainerResponseContext#getEntityStream() 因为这是输出流? ContainerResponseContext#getEntity() 返回一个对象,即 org.glassfish.jersey.client.internal.HttpUrlConnector。
  • 可以这样打印:BufferedInputStream stream = new BufferedInputStream(requestContext.getEntityStream()); String payload = IOUtils.toString(stream, "UTF-8"); logger.debug("Payload: " + payload); requestContext.setEntityStream(IOUtils.toInputStream(payload, "UTF-8"));
  • 这适用于 requestContext.getEntityStream (InputStream)。 responseContext.getEntityStream (OutputStream) 怎么办?
  • 您不需要实体流。只需使用responseContext.getEntity()
  • 有时你必须热爱 Java。使用其他语言执行此操作通常是添加中间件模块的一行更改。
【解决方案2】:

试试拦截器(不仅仅是普通的 EJB 拦截器,你可以使用 CDI)。

他们在那里实施横切关注点(方面)。

【讨论】:

    【解决方案3】:

    对于其他使用 Jersey 并试图解决相同问题的人,org.glassfish.jersey.logging.LoggingFeature 可以在客户端或服务器上使用。它将请求和响应记录到 java.util.logging.Logger。

    如果需要,可以使用 org.slf4j.bridge.SLF4JBridgeHandler 将输出桥接到 slf4j。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2023-03-14
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多