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

docs/Spring全家桶/SpringCloud/SpringCloud概述.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,4 +134,10 @@ Spring Boot
134134
……
135135
}
136136
137-
````
137+
````
138+
# 参考文章
139+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
140+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
141+
https://juejin.cn/post/6931922457741770760
142+
https://github.com/D2C-Cai/herring
143+
http://c.biancheng.net/springcloud

docs/Spring全家桶/SpringCloudAlibaba源码分析/SpringCloudAlibabaNacos源码分析:服务注册.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,4 +346,12 @@ task
346346

347347
也就是在对象初始化的时候就进行启动一个线程池,去运行notifier对应的方法。这个run方法就是这样run的。启动后就会实时监听异步队列。这样写的好处,就是将写和处理完全隔离了。通过监听高性能的内存队列,来处理这个事情,他这样的好处,1、提高性能
348348

349-
![image.png](https://java-tutorial.oss-cn-shanghai.aliyuncs.com/e27c8e72b30845c3ab9346b89932fb42.png "image.png")
349+
![image.png](https://java-tutorial.oss-cn-shanghai.aliyuncs.com/e27c8e72b30845c3ab9346b89932fb42.png "image.png")
350+
351+
# 参考文章
352+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
353+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
354+
https://juejin.cn/post/6931922457741770760
355+
https://github.com/D2C-Cai/herring
356+
http://c.biancheng.net/springcloud
357+
https://github.com/macrozheng/springcloud-learning

docs/Spring全家桶/SpringCloudAlibaba源码分析/SpringCloudAlibabaNacos源码分析:概览.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,4 +491,11 @@ NACOS
491491

492492
当然,也会存在一些不可忽视的缺点,比如,注释过少,代码还有很大的重构空间,tenant和namespace两个概念混淆使用。
493493

494-
关于Spring Cloud Alibaba Nacos的介绍到此就结束了,希望对你有所帮助。
494+
关于Spring Cloud Alibaba Nacos的介绍到此就结束了,希望对你有所帮助。
495+
# 参考文章
496+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
497+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
498+
https://juejin.cn/post/6931922457741770760
499+
https://github.com/D2C-Cai/herring
500+
http://c.biancheng.net/springcloud
501+
https://github.com/macrozheng/springcloud-learning

docs/Spring全家桶/SpringCloudAlibaba源码分析/SpringCloudAlibabaNacos源码分析:配置中心.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,4 +256,11 @@ public class ConfigServerDemo {
256256
作者:政采云电子卖场团队
257257
链接:https://juejin.cn/post/6999814668390760484
258258
来源:稀土掘金
259-
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
259+
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
260+
# 参考文章
261+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
262+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
263+
https://juejin.cn/post/6931922457741770760
264+
https://github.com/D2C-Cai/herring
265+
http://c.biancheng.net/springcloud
266+
https://github.com/macrozheng/springcloud-learning

docs/Spring全家桶/SpringCloudAlibaba源码分析/SpringCloudRocketMQ源码分析.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,4 +524,11 @@ public synchronized void start() throws MQClientException {
524524
作者:枫叶红花
525525
链接:https://www.jianshu.com/p/8dd4cfeae39d
526526
来源:简书
527-
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
527+
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
528+
# 参考文章
529+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
530+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
531+
https://juejin.cn/post/6931922457741770760
532+
https://github.com/D2C-Cai/herring
533+
http://c.biancheng.net/springcloud
534+
https://github.com/macrozheng/springcloud-learning

docs/Spring全家桶/SpringCloudAlibaba源码分析/SpringCloudSeata源码分析.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -994,4 +994,12 @@ public BranchStatus branchRollback(BranchType branchType, String xid, long branc
994994

995995

996996

997-
最终回滚方法调用的是UndoLogManager.undo(dataSourceProxy, xid, branchId);![SpringCloud Alibaba系列——17Seata AT模式源码分析(下)-开源基础软件社区](https://java-tutorial.oss-cn-shanghai.aliyuncs.com/4842a0701546824cf2720855d8310a1274c576.jpg "SpringCloud Alibaba系列——17Seata AT模式源码分析(下)-开源基础软件社区")判断undolog是否存在,存在则删除对应undolog,并一起提交,到此seata的AT模式源码解析完毕。
997+
最终回滚方法调用的是UndoLogManager.undo(dataSourceProxy, xid, branchId);![SpringCloud Alibaba系列——17Seata AT模式源码分析(下)-开源基础软件社区](https://java-tutorial.oss-cn-shanghai.aliyuncs.com/4842a0701546824cf2720855d8310a1274c576.jpg "SpringCloud Alibaba系列——17Seata AT模式源码分析(下)-开源基础软件社区")判断undolog是否存在,存在则删除对应undolog,并一起提交,到此seata的AT模式源码解析完毕。
998+
999+
# 参考文章
1000+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
1001+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
1002+
https://juejin.cn/post/6931922457741770760
1003+
https://github.com/D2C-Cai/herring
1004+
http://c.biancheng.net/springcloud
1005+
https://github.com/macrozheng/springcloud-learning

docs/Spring全家桶/SpringCloudAlibaba源码分析/SpringCloudSentinel源码分析.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -650,3 +650,10 @@ public void entry(Context context, ResourceWrapper resourceWrapper, DefaultNode
650650

651651

652652

653+
# 参考文章
654+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
655+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
656+
https://juejin.cn/post/6931922457741770760
657+
https://github.com/D2C-Cai/herring
658+
http://c.biancheng.net/springcloud
659+
https://github.com/macrozheng/springcloud-learning

docs/Spring全家桶/SpringCloud源码分析/SpringCloudConfig源码分析.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1038,4 +1038,12 @@ if (!remoteProperties.isAllowOverride() || (!remoteProperties.isOverrideNone()
10381038
作者:拥抱孤独_to
10391039
链接:https://www.jianshu.com/p/60c6ab0e79d5
10401040
来源:简书
1041-
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
1041+
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
1042+
1043+
# 参考文章
1044+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
1045+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
1046+
https://juejin.cn/post/6931922457741770760
1047+
https://github.com/D2C-Cai/herring
1048+
http://c.biancheng.net/springcloud
1049+
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
@@ -1773,4 +1773,12 @@ Value getValue(final Key key, boolean useReadOnlyCache) {
17731773
}
17741774
return payload;
17751775
}
1776-
```
1776+
```
1777+
1778+
# 参考文章
1779+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
1780+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
1781+
https://juejin.cn/post/6931922457741770760
1782+
https://github.com/D2C-Cai/herring
1783+
http://c.biancheng.net/springcloud
1784+
https://github.com/macrozheng/springcloud-learning

docs/Spring全家桶/SpringCloud源码分析/SpringCloudGateway源码分析.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,4 +404,12 @@ public Mono<Void> filter(ServerWebExchange exchange, GatewayFilterChain chain) {
404404
// 6\. 执行过滤器链中的其他过滤请求
405405
return chain.filter(exchange);
406406
}
407-
```
407+
```
408+
409+
# 参考文章
410+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
411+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
412+
https://juejin.cn/post/6931922457741770760
413+
https://github.com/D2C-Cai/herring
414+
http://c.biancheng.net/springcloud
415+
https://github.com/macrozheng/springcloud-learning

docs/Spring全家桶/SpringCloud源码分析/SpringCloudHystrix源码分析.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1183,5 +1183,10 @@ circuitBreaker.allowRequest()
11831183

11841184

11851185
最终调用到我们自己的业务逻辑。
1186-
1187-
下面总结一下我们整体的业务逻辑图:
1186+
# 参考文章
1187+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
1188+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
1189+
https://juejin.cn/post/6931922457741770760
1190+
https://github.com/D2C-Cai/herring
1191+
http://c.biancheng.net/springcloud
1192+
https://github.com/macrozheng/springcloud-learning

docs/Spring全家桶/SpringCloud源码分析/SpringCloudLoadBalancer源码分析.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -659,4 +659,12 @@ public class CustomLoadBalancerConfiguration {
659659

660660
![image-20220509003807968](https://java-tutorial.oss-cn-shanghai.aliyuncs.com/c72e3f02f7e0d5d3343f8ae9c464b69c.png)
661661

662-
![image-20220509003927550](https://java-tutorial.oss-cn-shanghai.aliyuncs.com/59796bbbd6b3524e32759d42b622f1bc.png)
662+
![image-20220509003927550](https://java-tutorial.oss-cn-shanghai.aliyuncs.com/59796bbbd6b3524e32759d42b622f1bc.png)
663+
664+
# 参考文章
665+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
666+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
667+
https://juejin.cn/post/6931922457741770760
668+
https://github.com/D2C-Cai/herring
669+
http://c.biancheng.net/springcloud
670+
https://github.com/macrozheng/springcloud-learning

docs/Spring全家桶/SpringCloud源码分析/SpringCloudOpenFeign源码分析.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -893,3 +893,10 @@ Response convertResponse(HttpURLConnection connection, Request request) throws I
893893

894894

895895

896+
# 参考文章
897+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
898+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
899+
https://juejin.cn/post/6931922457741770760
900+
https://github.com/D2C-Cai/herring
901+
http://c.biancheng.net/springcloud
902+
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
@@ -944,4 +944,12 @@ public interface ServerList<T extends Server> {
944944
getInitialListOfServers是获取初始化的服务列表。
945945
getUpdatedListOfServers是获取更新的服务列表。
946946
ServerList有多个实现类,具体用的哪个呢,可以在
947-
EurekaRibbonClientConfiguration类中找到,这是Ribbon和Eureka结合的自动配置类,但是目前我们没有整合Eureka,是通过配置文件配置,所以会走ConfigurationBasedServerList类。
947+
EurekaRibbonClientConfiguration类中找到,这是Ribbon和Eureka结合的自动配置类,但是目前我们没有整合Eureka,是通过配置文件配置,所以会走ConfigurationBasedServerList类。
948+
949+
# 参考文章
950+
https://lijunyi.xyz/docs/SpringCloud/SpringCloud.html#_2-2-x-%E5%88%86%E6%94%AF
951+
https://mp.weixin.qq.com/s/2jeovmj77O9Ux96v3A0NtA
952+
https://juejin.cn/post/6931922457741770760
953+
https://github.com/D2C-Cai/herring
954+
http://c.biancheng.net/springcloud
955+
https://github.com/macrozheng/springcloud-learning

0 commit comments

Comments
 (0)