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