endpoint is blank

1.

Check out the version correspondence between springboot and springcloud and springCloudAlibaba

 

2.

After SpringBoot 2.4.xthe version of , for the support of bootstrap.properties/ bootstrap.yamlconfiguration files (we collectively become Bootstrapconfiguration files), the following dependencies need to be imported

config configuration is generally recorded in the bootstrap.yml file

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-bootstrap</artifactId>
            <version>3.1.0</version>
        </dependency>

 

Guess you like

Origin blog.csdn.net/xss12322/article/details/130048746