在这篇文章中,我们将在弹簧启动执行器的帮助下跟踪 http 请求。
首先,将弹簧-引导-启动器-执行器依赖项添加到pom.xml文件中:
- <dependency>
- <groupId>org.springframework.bootgroupId>
- <artifactId>spring-boot-starter-actuatorartifactId>
- dependency>
其次,通过将以下配置 Bean添加到项目中来启用 HTTP 跟踪:
- @Configuration
- public class HttpTraceActuatorConfiguration {
-
- @Bean
- public HttpTraceRepository httpTraceRepository() {
- return new InMemoryHttpTraceRepository();
- }
-
- }
我们必须这样做,因为在Spring-Boot-2.2.0 中默认情况下不再启用执行器 HTTP 跟踪和审计功能。
第三,将以下行添加到application.properties:
- management.endpoints.web.exposure.include=httptrace
- management.endpoints.enabled-by-default=true
或 YML 格式:
- management:
- endpoints:
- web:
- exposure:
- include: "httptrace"
- enabled-by-default: true
您可以在此处找到所有可用的端点。
最后,您可以通过以下链接查看最后 100 个 http 请求: http://localhost:8080/actuator/httptrace
如果需要,请替换主机名和端口。
我们已经描述了如何在弹簧引导执行器的帮助下跟踪 http 请求。