jps, jstat

JVM Monitoring Tools

목차 Monitoring Tools jps 옵션 jstat 일반 옵션 -class: Class loader 통계 -gc: GC에 의해 관리된 heap 통계 출력 -gcutil: garbage collection 통계를 요약하여 출력 -gccapacity: Memory pool generation 과 space capacity 의 정보 출력 출력 옵션 참고자료 [Read More]
Tags: Java JVM

JVM과 힙

Java Virtual Machine & Heap

목차 JVM JVM 의 구성요소 Class loader Execution Engine Interpreter & JIT Compiler Java & Java bytecode Garbage collection JVM의 힙 Heap 1. Young Generation 2. Old Generation 3. Permanent Generation 참고자료 [Read More]
Tags: Java JVM