摘要:
cloud-framework 演示视频: 【SpringCloud Alibaba 最新版 全新微服务框架搭建(预告片~~)】 https://www.bilibili.com/video/BV1hP411M74a/?share_source=copy_web&vd_source=d9abe505 阅读全文
摘要:
Java中Stop-The-World机制简称STW,是在执行垃圾收集算法时,Java应用程序的其他所有线程都被挂起(除了垃圾收集帮助器之外)。Java中一种全局暂停现象,全局停顿,所有Java代码停止,native代码可以执行,但不能与JVM交互;这些现象多半是由于gc引起。 GC时的Stop t 阅读全文
摘要:
aconst_null 将null对象引用压入栈 iconst_m1 将int类型常量-1压入栈 iconst_0 将int类型常量0压入栈 iconst_1 将int类型常量1压入栈 iconst_2 将int类型常量2压入栈 iconst_3 将int类型常量3压入栈 iconst_4 将int 阅读全文
摘要:
https://www.jianshu.com/p/658911a8cff3 https://www.jianshu.com/p/ca1623ac7723 阅读全文
摘要:
Http的3次握手: 第一次握手:客户端发送一个带SYN的TCP报文到服务器,表示客户端想要和服务器端建立连接。 第二次握手:服务器端接收到客户端的请求,返回客户端报文,这个报文带有SYN和ACK确认标示,访问客户端是否准备好。 第三次握手:客户端再次响应服务端一个ACK确认,表示我已经准备好了。 阅读全文
摘要:
https://blog.csdn.net/abcde123_123/article/details/103879385 阅读全文
摘要:
我们在 SpringBoot 中使用 Redis 时,会引入如下的 redis starter <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</a 阅读全文
摘要:
原文链接:https://www.cnblogs.com/zeussbook/p/10778532.html 阅读全文
摘要:
创建闭锁,确保能连接到zk服务器。// 创建闭锁final CountDownLatch countDownLatch = new CountDownLatch(1);String connectString="139.196.31.237:2181";int sessionTimeout=5000 阅读全文
摘要:
1.注释bind-address = 127.0.0.1 sudo vim /etc/mysql/mysql.conf.d/mysqld.cnf 将bind-address = 127.0.0.1注释掉(即在行首加#),如下: 代码如下: # Instead of skip-networking t 阅读全文