1.https://blog.csdn.net/qq_35571554/article/details/82759668 B+树原理漫画讲解
2.https://blog.csdn.net/moakun/article/details/79927830 B-树原理漫画讲解

3..http://cron.qqe2.com/ 在线生成cron表达式

4.https://docs.oracle.com/javase/8/docs/technotes/tools/unix/jstat.html

5. https://www.jianshu.com/p/4549d2738060 spring源码编译,包含了aop的编译

6.https://github.com/marcosbarbero/spring-cloud-zuul-ratelimit 网关限流

7.https://blog.csdn.net/qq_41523096/article/details/82142747?utm_source=pc 时间复杂度

8.https://www.hutool.cn/ 糊涂工具包,包含了java常用的工具

9.在线作图: https://app.diagrams.net/

10.http://c.biancheng.net/view/1331.html  设计模式
11.idea启动不了(Command line is too long. Shorten command line for ….): https://blog.csdn.net/qq_38425719/article/details/100012533

13.leetcode 试题
12. 内存https://www.jianshu.com/p/220ccfc91e95

13..https://www.toutiao.com/i6825827922012537357/  hashMap源码分析

14.码云 renren 开源项目

15. 安装node的教程:https://www.cnblogs.com/liuqiyun/p/8133904.html

16.tomcat 架构分析:https://mp.weixin.qq.com/s/D-lmaFwJBsiWIPmFIcfJnQ

17. idea 破解教程:https://www.exception.site/essay/how-to-free-use-intellij-idea-2019-3

18. idea java代码格式化插件: https://jingyan.baidu.com/article/17bd8e529d627185ab2bb8eb.html

19.高德订单状态流转处理:https://mp.weixin.qq.com/s/0GfCOUEw4svvSQVoShjJDw

20. elasticsearch: https://blog.csdn.net/wwd0501/article/details/78652850

21.有赞技术团队博客地址:有赞技术团队 (youzan.com)

22. 数据结构,可视化学习:Data Structure Visualization (usfca.edu)

23.Arthas 用户文档 — Arthas 3.5.4 文档 (aliyun.com)

24. 部门工资前三高的员工 – 部门工资前三高的所有员工 – 力扣(LeetCode) (leetcode-cn.com)

25.https://www.aliyundrive.com/s/6DyS5k31Du2/folder/61399cbca2fc34d3ea014a408f82a9cb87fc13db

gradle项目创建缺少src目录,添加如下task解决:
task "create-dirs" << {
    sourceSets*.java.srcDirs*.each {
        it.mkdirs()
    }
    sourceSets*.resources.srcDirs*.each{
        it.midirs()
    }
}

 

版权声明:本文为yangxiaohui227原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/yangxiaohui227/p/11781319.html