You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -160,7 +160,7 @@
160
160
161
161
## API 网关
162
162
163
-
* 《芋道 Spring Cloud 服务网关 Spring Cloud Gateway 入门》
163
+
*[《芋道 Spring Cloud 服务网关 Spring Cloud Gateway 入门》](http://www.iocoder.cn/Spring-Cloud/Spring-Cloud-Gateway/?github) 对应 [labx-08](https://github.com/YunaiV/SpringBoot-Labs/tree/master/labx-08)
Copy file name to clipboardExpand all lines: labx-07/labx-07-sca-dubbo-demo02/labx-07-sca-dubbo-demo02-provider-springmvc/src/main/resources/application.yaml
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -25,3 +25,14 @@ dubbo:
25
25
# Spring Cloud Alibaba Dubbo 专属配置项,对应 DubboCloudProperties 类
26
26
cloud:
27
27
subscribed-services: ''# 设置订阅的应用列表,默认为 * 订阅所有应用。
28
+
29
+
management:
30
+
endpoints:
31
+
web:
32
+
exposure:
33
+
include: '*'# 需要开放的端点。默认值只打开 health 和 info 两个端点。通过设置 * ,可以开放所有端点。
34
+
endpoint:
35
+
# Health 端点配置项,对应 HealthProperties 配置类
36
+
health:
37
+
enabled: true # 是否开启。默认为 true 开启。
38
+
show-details: ALWAYS # 何时显示完整的健康信息。默认为 NEVER 都不展示。可选 WHEN_AUTHORIZED 当经过授权的用户;可选 ALWAYS 总是展示。
0 commit comments