<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> 也加了
时间: 2023-08-14 09:56:39 浏览: 189
spring-boot-actuator
感谢提供的信息,根据你的依赖配置,已经添加了 `spring-boot-starter-actuator` 依赖项。这是启用 Spring Boot Actuator 模块的关键步骤。
除了添加依赖项外,你还需要在配置文件中进行相应的配置。请确保在你的配置文件中添加了以下内容:
```properties
# 开启 Actuator 的所有监控点
management.endpoints.web.exposure.include=*
```
或者,如果你使用的是 YAML 格式的配置文件,可以添加以下内容:
```yaml
management:
endpoints:
web:
exposure:
include: "*"
```
这将允许所有 Actuator 的监控点在应用程序中进行访问和使用。
请确保应用程序重新启动后,访问 `http://localhost:7001/eureka/info` 可以返回正确的信息。如果问题仍然存在,请检查其他可能的配置问题,例如端口号、URL 路径等。
阅读全文