会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Draymond
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
···
11
下一页
2020年5月14日
spring源码编译debug环境调试
摘要: 1:下载spring-spring-framework 源码 2:安装配置gradle 3:idea配置gradle 4:解压spring-spring-framework,并用idae打开 5:注释一些 build.gradle 的配置 artifacts { // archives docsZi
阅读全文
posted @ 2020-05-14 12:57 Draymond
阅读(1160)
评论(0)
推荐(0)
2020年5月13日
StringBuffer扩容
摘要: 1:默认初始长度 16 public StringBuffer() { super(16);} 2:append追加 @Override public synchronized StringBuffer append(String str) { toStringCache = null; super
阅读全文
posted @ 2020-05-13 22:31 Draymond
阅读(596)
评论(0)
推荐(0)
String
摘要: hashCode public int hashCode() { int h = hash; if (h == 0 && value.length > 0) { //hash 默认值为0(此时还没有计算hash) && String中的字节数组有值(使用 String str="avc"; hash
阅读全文
posted @ 2020-05-13 22:26 Draymond
阅读(135)
评论(0)
推荐(0)
Object
摘要: 1.1 equals 与 hashCode https://blog.csdn.net/zj15527620802/article/details/88547914 1.2 equals public boolean equals(Object obj) { return (this == obj)
阅读全文
posted @ 2020-05-13 21:11 Draymond
阅读(141)
评论(0)
推荐(0)
2020年5月12日
jdk源码编译debug调试
摘要: 环境 windows10 + idea2018 + jdk1.8 jdk的源码位置: jdk文件夹下的src压缩包 1:maven项目 1号为个人测试代码 2号为 sdk源码src解压后的java文件 注意:sdk源码不要放到自己的测试代码的目录(蓝色java下面) 2:配置idea sourceP
阅读全文
posted @ 2020-05-12 20:09 Draymond
阅读(311)
评论(0)
推荐(0)
2020年4月28日
gateway 过滤器
摘要: @Component @Configuration public class GateWayFilter implements GlobalFilter, Ordered { @Override public Mono<Void> filter(ServerWebExchange exchange,
阅读全文
posted @ 2020-04-28 14:08 Draymond
阅读(651)
评论(0)
推荐(0)
异常
摘要: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /192.168.8.13:8002 Suppressed: reactor.core.pu
阅读全文
posted @ 2020-04-28 13:24 Draymond
阅读(1912)
评论(0)
推荐(0)
2020年4月26日
gateway 网关
摘要: 构建于springboot2.x,spring webFlux,project reactor之上,更加符合未来的技术体系 使用非阻塞的方式 pom <!--gateway--> <dependency> <groupId>org.springframework.cloud</groupId> <a
阅读全文
posted @ 2020-04-26 22:33 Draymond
阅读(689)
评论(1)
推荐(0)
Hystrix 图形化界面
摘要: 待做
阅读全文
posted @ 2020-04-26 22:17 Draymond
阅读(420)
评论(0)
推荐(0)
Hystrix 服务限流
摘要: 待做
阅读全文
posted @ 2020-04-26 22:16 Draymond
阅读(659)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
···
11
下一页
公告