Whitellabel Error Page status=404

SpringBoot框架搭建了一个注册中心(Eureka),点击注册中心面板中的服务后报了404错误,看下图:

Whitellabel Error Page status=404

 点击上面的服务查看详情时出现了下面的错误:

 Whitellabel Error Page status=404

 查阅资料显示少了一个下面的依赖:

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

报此错误的原因是springboot框架为了安全考虑没有暴露这些接口,所以页面才会报404错误,就是找不到呗,加上这个依赖就将这个接口暴露出来了,当然也暴露了一下其他接口,详情请直接搜索此依赖的artifactId,会有详细解释的。