The project in springbootadmin has been in an unopened health check state, but it has been registered with nacos

1. The service is configured with the context-path attribute, which causes Spring Boot Admin to be unable to obtain the endpoint information of this service.
2. The following dependencies are not introduced

<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

3. Your project is a spingsecurity or shiro project, and you have access to the requested address.
View: https://blog.csdn.net/qq_34922501/article/details/105189020

Guess you like

Origin blog.csdn.net/weixin_38019299/article/details/107359942