摘要:
1. maven配置 <!--H2数据库--> <!-- https://mvnrepository.com/artifact/com.h2database/h2 --> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</a 阅读全文
摘要:
synchronized原理剖析 1、使用方式1.1 修饰实例方法&方法块实例对象1.2 修饰静态方法&方法块实例对象1.3 修饰静态方法&方法块类 2、实现方式2.1 同步方法2.2 同步代码块 3、底层原理3.1 对象头3.2 Monitor Object设计模式3.3 管程机制 4、锁优化4. 阅读全文