Skip to content

Commit

Permalink
jvm
Browse files Browse the repository at this point in the history
  • Loading branch information
itwanger committed Mar 27, 2022
1 parent a854901 commit e5cffe6
Show file tree
Hide file tree
Showing 77 changed files with 7,424 additions and 154 deletions.
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@
- [吊打Java并发面试官之ThreadLocal](docs/thread/ThreadLocal.md)
- [吊打Java并发面试官之BlockingQueue](docs/thread/BlockingQueue.md)
- [面试必备:Java线程池解析](docs/thread/pool.md)
- [为什么阿里巴巴要禁用Executors创建线程池?](docs/thread/ali-executors.md)
- [深入剖析Java计划任务ScheduledThreadPoolExecutor](docs/thread/ScheduledThreadPoolExecutor.md)
- [Java atomic包中的原子操作类总结](docs/thread/atomic.md)
- [Java并发编程通信工具类CountDownLatch等一网打尽](docs/thread/CountDownLatch.md)
Expand All @@ -203,7 +204,23 @@

## Java虚拟机

- [什么是JVM?](docs/jvm/what-is-jvm.md)
- [JVM到底是什么?](docs/jvm/what-is-jvm.md)
- [JVM到底是如何运行Java代码的?](docs/jvm/how-run-java-code.md)
- [我竟然不再抗拒Java的类加载机制了](docs/jvm/class-load.md)
- [详解Java的类文件(class文件)结构](docs/jvm/class-file-jiegou.md)
- [javap的角度轻松看懂字节码](docs/jvm/bytecode.md)
- [JVM字节码指令详解](docs/jvm/zijiema-zhiling.md)
- [虚拟机是如何执行字节码指令的?](docs/jvm/how-jvm-run-zijiema-zhiling.md)
- [HSDB(Hotspot Debugger)从入门到实战](docs/jvm/hsdb.md)
- [史上最通俗易懂的ASM教程](docs/jvm/asm.md)
- [自己编译JDK](docs/jvm/compile-jdk.md)
- [深入理解JVM的内存结构](docs/jvm/neicun-jiegou.md)
- [Java 创建的对象到底放在哪?](docs/jvm/whereis-the-object.md)
- [咱们从头到尾说一次Java垃圾回收](docs/jvm/gc.md)
- [图解Java的垃圾回收机制](docs/jvm/tujie-gc.md)
- [Java问题诊断和排查工具(查看JVM参数、内存使用情况及分析)](docs/jvm/problem-tools.md)
- [Java即时编译(JIT)器原理解析及实践](docs/jvm/jit.md)
- [JVM 核心知识点总结](docs/jvm/zongjie.md)


# Java企业级开发
Expand Down
11 changes: 4 additions & 7 deletions docs/download/nicearticle.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,13 +184,6 @@
- [我是一个线程池(续)](https://mp.weixin.qq.com/s/e61PCzlIUe0YJcQsCG9FYw)
- [我是一个线程(全新修订版)](https://mp.weixin.qq.com/s/zxlLWxNsyIJMh4NDeGZBAg)
- [为什么 Java 线程没有 Running 状态?](https://mp.weixin.qq.com/s/eo-IKT_d6IT-8b2CXCidPw)
- [Java 创建的对象到底放在哪?](docs/jvm/whereis-the-object.md)
- [图解 Java 垃圾回收机制](https://mp.weixin.qq.com/s/RQGImK3-SrvJfs8eYCiv4A)
- [Java 字节码指令](https://mp.weixin.qq.com/s/GKe9F-IZZnw-f-_fRd_sZQ)
- [轻松看懂 Java 字节码](https://mp.weixin.qq.com/s/DRMBsE4iZjJt4xF-AS4w-g)
- [Java 虚拟机栈](https://mp.weixin.qq.com/s/xaIEqngM-J0DouWYa8Ms7g)
- [JVM 内存区域划分](https://mp.weixin.qq.com/s/NaCFDOGuoHkfQZZjvY66Jg)
- [解剖一下 Java 的 class 文件](https://mp.weixin.qq.com/s/uMEZ2Xwctx4n-_8zvtDp5A)
- [Spring事务失效的12个场景](https://mp.weixin.qq.com/s/qoWlR4ohVMfZf8IlhdSQDQ)
- [在 Spring Boot 中使用 HikariCP 连接池](https://mp.weixin.qq.com/s/9R3U4-Uzg3eaXJS20izS9A)
- [Spring Boot AOP 扫盲,实现统一的接口访问日志记录](docs/springboot/aop-log.md)
Expand All @@ -199,6 +192,10 @@
- [基于SpringBoot的CMS系统,拿去开发企业官网真香](https://mp.weixin.qq.com/s/HWTVu7E62VkaH2anQc1J_g)
- [Logback这样配置,性能提升10倍!](https://mp.weixin.qq.com/s/dO1dYAHwyB-81L1z3D_sdg)
- [崩溃!我带的实习生竟然把图片直接存到了服务器上!](docs/springboot/oss.md)
- [看见 Java](https://mp.weixin.qq.com/s/zBfvjq3gry2zsMoMir6oZA)
- [临时抱佛脚,线上问题如何排查?](https://mp.weixin.qq.com/s/mDnDjTWereF_ekLG1NNHRQ)
- [深入浅出 Java 虚拟机](http://static.kancloud.cn/alex_wsc/javajvm/1844795)
- [Java中9种常见的CMS GC问题分析与解决](docs/jvm/meituan-9-gc.md)

## 前端

Expand Down
Loading

0 comments on commit e5cffe6

Please sign in to comment.