java学习网站汇总

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

26 Apifox - API 文档、调试、Mock、测试一体化协作平台 - 接口文档工具,接口自动化测试工具,接口Mock工具,API文档工具,API Mock工具,API自动化测试工具

27.https://blog.csdn.net/qq_45402411/article/details/106943653/ idea 依赖拉取不下来

28. idea有用的插件: GenerateAllSetter

13. (14条消息) windows下使用SecureCRT工具连接vagrant 创建的centos7_securecrt如何链接vagrant private_kobe_IT的博客-CSDN博客

14.k8s笔记  https://www.yuque.com/leifengyang/oncloud/ctiwgo

15. 非root环境下安装python Linux环境(服务器)下非root用户安装Python3.6 - 胖墩哥 - 博客园 (cnblogs.com)

 

 

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

 

posted @ 2019-11-02 12:18  yangxiaohui227  阅读(458)  评论(0)    收藏  举报