Skip to content

Commit 8aa85dd

Browse files
committed
add reference
1 parent 5f73338 commit 8aa85dd

24 files changed

+201
-21
lines changed

docs/Spring全家桶/SpringCloud/SpringCloudConfig.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -821,4 +821,13 @@ config:
821821
4\. 使用浏览器再次访问“http://localhost:3366/getConfig”,结果如下图。
822822

823823
![](https://java-tutorial.oss-cn-shanghai.aliyuncs.com/10194222Y-15.png)
824-
图17:Spring Cloud Bus 定点通知
824+
图17:Spring Cloud Bus 定点通知
825+
826+
827+
# 参考文章
828+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
829+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
830+
https://juejin.cn/post/6931922457741770760
831+
https://github.com/D2C-Cai/herring
832+
http://c.biancheng.net/springcloud
833+
https://github.com/macrozheng/springcloud-learning

docs/Spring全家桶/SpringCloud/SpringCloudConsul.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,3 +239,10 @@ Spring Cloud Consul
239239
# 项目源码地址
240240

241241
https://github.com/macrozheng/springcloud-learning
242+
# 参考文章
243+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
244+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
245+
https://juejin.cn/post/6931922457741770760
246+
https://github.com/D2C-Cai/herring
247+
http://c.biancheng.net/springcloud
248+
https://github.com/macrozheng/springcloud-learning

docs/Spring全家桶/SpringCloud/SpringCloudEureka.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1041,4 +1041,12 @@ enable-self-preservation: false # false
10411041
在图 11 中 ,您可以看到以下内容:
10421042

10431043
* 在 DS Replicas 选项上面出现了红色警告信息“EMERGENCY! EUREKA MAY BE INCORRECTLY CLAIMING INSTANCES ARE UP WHEN THEY'RE NOT. RENEWALS ARE LESSER THAN THRESHOLD AND HENCE THE INSTANCES ARE NOT BEING EXPIRED JUST TO BE SAFE.”,出现该信息表明 Eureka 的自我保护机制处于开启状态,且已经被触发。
1044-
* micro-service-cloud-provider-dept-8001 的服务信息依然保存 Eureka Server 服务注册表中,并未被移除。
1044+
* micro-service-cloud-provider-dept-8001 的服务信息依然保存 Eureka Server 服务注册表中,并未被移除。
1045+
1046+
# 参考文章
1047+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
1048+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
1049+
https://juejin.cn/post/6931922457741770760
1050+
https://github.com/D2C-Cai/herring
1051+
http://c.biancheng.net/springcloud
1052+
https://github.com/macrozheng/springcloud-learning

docs/Spring全家桶/SpringCloud/SpringCloudGateway.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,9 +496,18 @@ eureka:
496496
2\. 重启```micro-service-cloud-gateway-9527,使用浏览器访问“http://eureka7001.com:9527/dept/list”,我们会发现访问报 406 错误,控制台输出如下。
497497

498498
```2021-10-21 16:25:39.450 INFO 19116 --- [ctor-http-nio-4] net.biancheng.c.filter.MyGlobalFilter : Thu Oct 21 16:25:39 CST 2021进入自定义的全局过滤器 MyGlobalFilter
499-
2021-10-21 16:25:39.451 INFO 19116 --- [ctor-http-nio-4] net.biancheng.c.filter.MyGlobalFilter : 参数 uname 不能为 null!```
499+
2021-10-21 16:25:39.451 INFO 19116 --- [ctor-http-nio-4] net.biancheng.c.filter.MyGlobalFilter : 参数 uname 不能为 null!
500+
```
500501

501502
3\. 使用浏览器访问“http://eureka7001.com:9527/dept/list?uname=123”,结果如下图。
502503

503504
![自定义全局网关过滤器](http://c.biancheng.net/uploads/allimg/211210/101P43096-6.png)
504-
图7:自定义全局网关过滤器
505+
图7:自定义全局网关过滤器
506+
507+
# 参考文章
508+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
509+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
510+
https://juejin.cn/post/6931922457741770760
511+
https://github.com/D2C-Cai/herring
512+
http://c.biancheng.net/springcloud
513+
https://github.com/macrozheng/springcloud-learning

docs/Spring全家桶/SpringCloud/SpringCloudHystrix.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1109,4 +1109,12 @@ public class HystrixDashboardConfig {
11091109
8\. 使用浏览器多次访问“http://eureka7001.com:8004/dept/hystrix/circuit/1”和http://eureka7001.com:8004/dept/hystrix/circuit/-1”,查看 Hystrix 监控页面,如下图。
11101110

11111111
![Hystrix 监控 8004 运行情况](https://java-tutorial.oss-cn-shanghai.aliyuncs.com/10162345J-15.png)
1112-
图16:Hystrix 监控服务运行情况
1112+
图16:Hystrix 监控服务运行情况
1113+
1114+
# 参考文章
1115+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
1116+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
1117+
https://juejin.cn/post/6931922457741770760
1118+
https://github.com/D2C-Cai/herring
1119+
http://c.biancheng.net/springcloud
1120+
https://github.com/macrozheng/springcloud-learning

docs/Spring全家桶/SpringCloud/SpringCloudLoadBalancer.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,3 +336,11 @@ LoadBalancerΪ
336336
# 项目源码地址
337337

338338
https://github.com/macrozheng/springcloud-learning/tree/master/nacos-loadbalancer-service
339+
340+
# 参考文章
341+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
342+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
343+
https://juejin.cn/post/6931922457741770760
344+
https://github.com/D2C-Cai/herring
345+
http://c.biancheng.net/springcloud
346+
https://github.com/macrozheng/springcloud-learning

docs/Spring全家桶/SpringCloud/SpringCloudOpenFeign.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,4 +479,11 @@ Logger.Level
479479
2021-10-12 14:33:07.983 DEBUG 13388 --- [p-nio-80-exec-2] n.biancheng.c.service.DeptFeignService : [DeptFeignService#list]
480480
2021-10-12 14:33:07.991 DEBUG 13388 --- [p-nio-80-exec-2] n.biancheng.c.service.DeptFeignService : [DeptFeignService#list] [{"deptNo":1,"deptName":"开发部","dbSource":"bianchengbang_jdbc"},{"deptNo":2,"deptName":"人事部","dbSource":"bianchengbang_jdbc"},{"deptNo":3,"deptName":"财务部","dbSource":"bianchengbang_jdbc"},{"deptNo":4,"deptName":"市场部","dbSource":"bianchengbang_jdbc"},{"deptNo":5,"deptName":"运维部","dbSource":"bianchengbang_jdbc"}]
481481
2021-10-12 14:33:07.991 DEBUG 13388 --- [p-nio-80-exec-2] n.biancheng.c.service.DeptFeignService : [DeptFeignService#list] <--- END HTTP (341-byte body)```
482-
```
482+
```
483+
# 参考文章
484+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
485+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
486+
https://juejin.cn/post/6931922457741770760
487+
https://github.com/D2C-Cai/herring
488+
http://c.biancheng.net/springcloud
489+
https://github.com/macrozheng/springcloud-learning

docs/Spring全家桶/SpringCloud/SpringCloudRibbon.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -654,4 +654,12 @@ public class MicroServiceCloudConsumerDept80Application {
654654
![定制负载均衡策略](https://java-tutorial.oss-cn-shanghai.aliyuncs.com/10122152E-5.gif)
655655
图6:定制负载均衡策略
656656

657-
通过图 6 中 dbSource 字段取值的变化可以看出,我们定制的负载均衡策略已经生效。
657+
通过图 6 中 dbSource 字段取值的变化可以看出,我们定制的负载均衡策略已经生效。
658+
659+
# 参考文章
660+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
661+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
662+
https://juejin.cn/post/6931922457741770760
663+
https://github.com/D2C-Cai/herring
664+
http://c.biancheng.net/springcloud
665+
https://github.com/macrozheng/springcloud-learning

docs/Spring全家桶/SpringCloud/SpringCloudSleuth.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,4 +131,12 @@ springcloud-learning
131131

132132
## [#](https://www.macrozheng.com/cloud/sleuth.html#%E9%A1%B9%E7%9B%AE%E6%BA%90%E7%A0%81%E5%9C%B0%E5%9D%80)项目源码地址
133133

134-
[https://github.com/macrozheng/springcloud-learning](https://github.com/macrozheng/springcloud-learning)
134+
[https://github.com/macrozheng/springcloud-learning](https://github.com/macrozheng/springcloud-learning)
135+
136+
# 参考文章
137+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
138+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
139+
https://juejin.cn/post/6931922457741770760
140+
https://github.com/D2C-Cai/herring
141+
http://c.biancheng.net/springcloud
142+
https://github.com/macrozheng/springcloud-learning

docs/Spring全家桶/SpringCloud/SpringCloudZuul.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -384,3 +384,9 @@ Zuul
384384
#项目源码地址
385385

386386
https://github.com/macrozheng/springcloud-learning
387+
# 参考文章
388+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
389+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
390+
https://juejin.cn/post/6931922457741770760
391+
https://github.com/D2C-Cai/herring
392+
http://c.biancheng.net/springcloud

0 commit comments

Comments
 (0)