有没有办法配置球衣客户端请求日志记录的级别?

is there a way of configuring the level of jersey client request logging?

我正在使用 jersey client 2.25 并且正在记录我的请求。我想要一种简单的方法来打开和关闭此日志记录,最好是通过日志记录配置文件。我试过将 logging.properties 文件放在 class 路径中,但这似乎没有任何效果。

Logger logger = Logger.getLogger("my logger");

LoggingFilter filter = new LoggingFilter(logger, true);

Client client = ClientBuilder.newClient().register(filter);

注意:此版本已弃用 LoggingFilter,但似乎会在 2.5.1 中恢复。 2.25 的建议是使用 LoggingFeature 但我注意到这在 2.5.1

中根本不存在

我不确定为什么您在 jersey 2.25.1 版本中找不到 LoggingFeature

下面是使用 LoggingFeature -

的一种方法

客户端Class-

创建您的客户端对象并将日志记录级别设置为 Fine -

// Define it as a constant
Logger LOGGER = Logger.getLogger(YourClient.class.getName());

// Set logging level to FINE level for request/response logging    
Feature feature = new LoggingFeature(LOGGER, Level.FINE, Verbosity.PAYLOAD_ANY,
                LoggingFeature.DEFAULT_MAX_ENTITY_SIZE);

Client client = ClientBuilder.newBuilder().register(feature).build();

log_config.properties 文件-

假设下面是日志配置文件-

handlers= java.util.logging.FileHandler

# Using this level, request/response logging can be controlled
.level= FINE

java.util.logging.FileHandler.pattern = ./logs/application.log

java.util.logging.FileHandler.limit = 5000

java.util.logging.FileHandler.count = 50

java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter

主要Class-

在您的客户端应用程序中使用此日志配置文件 -

LogManager.getLogManager().readConfiguration(new FileInputStream("./config/log_config.properties"));

现在,您的 loggingfeature 配置为在 FINE 级别记录数据,并且您的日志配置文件也配置为 FINE 级别的日志记录,这意味着 request/response 将被记录在日志中。

如果您更改日志配置文件中的级别,假设从 FINEINFO,您的 request/response 将不再记录在日志中。

编辑 以下是我正在使用的 Maven 依赖项 -

    <dependency>
        <groupId>org.glassfish.jersey.core</groupId>
        <artifactId>jersey-client</artifactId>
        <version>2.25.1</version>
    </dependency>

    <!-- Dependency for JSON request/response handling in Jersey -->
    <dependency>
        <groupId>org.glassfish.jersey.media</groupId>
        <artifactId>jersey-media-json-jackson</artifactId>
        <version>2.25.1</version>
    </dependency>

编辑 对于控制台日志记录,您只需要以下配置即可在 FINE 级别打印 request/response -

handlers= java.util.logging.ConsoleHandler

.level= FINE

java.util.logging.ConsoleHandler.level = FINE
java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter

导入必需的语句 Classes -

import java.util.logging.Level;
import java.util.logging.Logger;
import javax.ws.rs.core.Feature;
import org.glassfish.jersey.logging.LoggingFeature;
import org.glassfish.jersey.logging.LoggingFeature.Verbosity;