我们可以通过Spring Cloud Gateway整合actuator监控,查看网关的配置信息,下面我们来实现一下

首先在service-gateway服务pom.xml文件添加如下依赖:

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

然后在服务的application.yml文件中添加如下配置:

#开放所有页面节点  默认只开启了health、info两个节点
management:
  endpoints:
    web:
      exposure:
        include:  '*'

重启service-gateway服务,在浏览器访问http://localhost/actuator/gateway/routes,返回网关配置的路由信息,如下:

actuator.png

本文代码git地址 https://gitee.com/xmingtx/springcloud-lesson.git