上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 34 下一页
摘要: 一、Spring Cloud Eureka简介 注册中心 Zk也是注册中心。 Eureka是Netflix贡献给Spring Cloud的一个框架。Netflix给Spring Cloud 贡献了很多框架。 二、Spring Cloud Eureka和Zookeeper的区别 2.1分布式特征(CA 阅读全文
posted @ 2020-05-02 11:39 alittlecomputer 阅读(177) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/fuyuwei2015/article/details/72758179 阅读全文
posted @ 2020-04-26 13:55 alittlecomputer 阅读(97) 评论(0) 推荐(0) 编辑
摘要: Linux机器查看: 如果本地zk的地址为192.168.0.1端口为默认端口2181。进入bin,sh zkCli.sh -server 192.168.0.1:2181ls /dubbo 查看到许多服务比方说其中有com.app.interfacels /dubbo/com.app.interf 阅读全文
posted @ 2020-04-26 11:45 alittlecomputer 阅读(5113) 评论(0) 推荐(0) 编辑
摘要: in:name 关键字 in:description 关键字 in:readme 关键字 stars:>数字 关键字 stars:10..20 关键字 fork同理 language:java 阅读全文
posted @ 2020-04-24 11:34 alittlecomputer 阅读(114) 评论(0) 推荐(0) 编辑
摘要: https://segmentfault.com/a/1190000016349824 https://github.com/double-qiu/books 阅读全文
posted @ 2020-04-23 20:47 alittlecomputer 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 我的整个搭建用了三个服务器 Zookeeper在10.160.192.164 生产者在10.160.196.0 消费者在10.121.252.209 一、安装Zookeeper 在这里下载https://zookeeper.apache.org/releases.html 我下载的是3.6.0版本。 阅读全文
posted @ 2020-04-23 20:07 alittlecomputer 阅读(250) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/zlbdmm/article/details/104530343 阅读全文
posted @ 2020-04-21 20:14 alittlecomputer 阅读(1152) 评论(0) 推荐(0) 编辑
摘要: 这个连接红黑树写的挺好的,推荐一下 https://www.jianshu.com/p/e136ec79235c 阅读全文
posted @ 2020-04-15 17:12 alittlecomputer 阅读(137) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-03-31 16:43 alittlecomputer 阅读(0) 评论(0) 推荐(0) 编辑
摘要: springmvc如果没有配置,那么默认会加载/WEB-INF/[servlet-name]-servlet.xml <!-- 加载/WEB-INF/[servlet-name]-servlet.xml --> 阅读全文
posted @ 2020-03-27 15:16 alittlecomputer 阅读(95) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/youth-dream/p/7780200.html 阅读全文
posted @ 2020-03-20 09:44 alittlecomputer 阅读(143) 评论(0) 推荐(0) 编辑
摘要: AStar import math class AStarPlannar: def __init__(self,ox,oy,reso,rr): """ :param ox:障碍物的x的坐标列表 :param oy: 障碍物的y的坐标列表 :param reso: grid的分辨率(grid solu 阅读全文
posted @ 2020-03-19 20:29 alittlecomputer 阅读(262) 评论(0) 推荐(0) 编辑
摘要: https://juejin.im/post/5d4a7559f265da03e05afcb4 为什么需要B树和B+树 我们常用的二叉搜索树的结构是红黑树,包括面试中红黑树被问到的几率也更大。甚至Java中的HashMap里面的实现也是红黑树,课件红黑树的强大和其广泛的适用性。那么为什么还要发明出b 阅读全文
posted @ 2020-03-16 17:25 alittlecomputer 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 时间序列数据库 https://www.cnblogs.com/byron-123/p/10432241.html InfluxDB 阅读全文
posted @ 2020-03-13 11:13 alittlecomputer 阅读(105) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/zhi-leaf/p/10813048.html 前序遍历 访问顺序:先根节点,再左子树,最后右子树;上图的访问结果为:GDAFEMHZ。 中序遍历 访问顺序:先左子树,再根节点,最后右子树;上图的访问结果为:ADEFGHMZ。 后续遍历 访问顺序:先 阅读全文
posted @ 2020-03-09 16:10 alittlecomputer 阅读(173) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 34 下一页