我有一个简单的 Spring Boot 应用程序,它logbook-spring-boot-starter
依赖于logbook库。
该文件说要忽略健康检查请求,请像这样连接日志:
Logbook logbook = Logbook.builder()
.condition(exclude(
requestTo("/health"),
requestTo("/admin/**"),
contentType("application/octet-stream"),
header("X-Secret", newHashSet("1", "true")::contains)))
.build();
这可能听起来很幼稚,但我不知道应该在哪里连接它。我应该把它放在任何带有特定注释的特定类或方法中吗?一个例子会有所帮助。