会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
DiligentCoder
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
9
10
···
26
下一页
2021年9月13日
B+树看这一篇就够了(B+树查找、插入、删除全上)
摘要: https://zhuanlan.zhihu.com/p/149287061
阅读全文
posted @ 2021-09-13 23:24 DiligentCoder
阅读(74)
评论(0)
推荐(0)
2021年7月31日
SpringMVC知识点回顾
摘要: https://blog.csdn.net/weixin_30733003/article/details/98574063
阅读全文
posted @ 2021-07-31 15:51 DiligentCoder
阅读(59)
评论(0)
推荐(0)
2021年7月18日
jvm各个区存放的信息
摘要: 暂且这样记吧... java 对象数组以及非静态成员变量存在于堆中 java 类中的方法以及静态成员变量存在于方法区中 java 引用以及局部变量表在栈中 https://www.cnblogs.com/zhuxiaopijingjing/p/12272137.html
阅读全文
posted @ 2021-07-18 21:50 DiligentCoder
阅读(105)
评论(0)
推荐(0)
2021年7月17日
基于Cas实现锁
摘要: 
阅读全文
posted @ 2021-07-17 20:45 DiligentCoder
阅读(74)
评论(0)
推荐(0)
2021年7月16日
Cacheable 使用详解
摘要: https://www.cnblogs.com/coding-one/p/12401630.html
阅读全文
posted @ 2021-07-16 23:53 DiligentCoder
阅读(134)
评论(0)
推荐(0)
@SpringBootApplication包含的三个注解及其含义
摘要: @SpringBootApplication包含的三个注解及其含义 第一个:@SpringBootConfiguration(在这个类的源码中又有一个Configuration的注解) @Configuration这个注解的作用就是声明当前类是一个配置类,然后Spring会自动扫描到添加了@Conf
阅读全文
posted @ 2021-07-16 22:14 DiligentCoder
阅读(958)
评论(0)
推荐(0)
HashMap原理
摘要: https://blog.csdn.net/weixin_42759988/article/details/99665964 put方法的思路: 1.对 key 的 hashCode()做 hash,然后再计算 index; 2.如果没碰撞直接放到 bucket 里; 3.如果碰撞了,以链表的形式存
阅读全文
posted @ 2021-07-16 01:05 DiligentCoder
阅读(70)
评论(0)
推荐(0)
2021年7月7日
单例模式的漏洞,通过反射和序列化、反序列化来破解单例,以及如何避免这些漏洞
摘要: https://www.cnblogs.com/shangxinfeng/p/6754345.html
阅读全文
posted @ 2021-07-07 20:00 DiligentCoder
阅读(54)
评论(0)
推荐(0)
2021年6月28日
Lamda表达式
摘要: https://blog.csdn.net/qq_41915921/article/details/107530736
阅读全文
posted @ 2021-06-28 15:41 DiligentCoder
阅读(35)
评论(0)
推荐(0)
2021年6月27日
幻读、脏读、不可重复读
摘要: 脏读 :脏读就是指当一个事务正在访问数据,并且对数据进行了修改,而这种修改还没有提交到数据库中,这时,另外一个事务也访问这个数据,然后使用了这个数据。 e.g. 1.Mary的原工资为1000, 财务人员将Mary的工资改为了8000(但未提交事务) 2.Mary读取自己的工资 ,发现自己的工资变为
阅读全文
posted @ 2021-06-27 22:18 DiligentCoder
阅读(101)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
9
10
···
26
下一页
公告