Using JDK Tools for JVM Memory Analysis
Performing JVM memory analysis helps identify and resolve potential issues.
By leveraging the built-in tools provided by JDK, you can diagnose possible problems and determine optimization directions.
There are several benefits to JVM memory analysis.
Memory Leak Detection: A JVM memory leak occurs when objects in an application occupy memory t ...
Posted on Sun, 06 Sep 2026 16:31:29 +0000 by manwhoeatsrats
Java Thread Diagnostics: CPU Overload and Deadlock Analysis
When a Java application exhibits high CPU usage or becomes unresponsive, diagnosing the root cause requires systematic inspection of thread behavior using native OS tools and JVM utilities.
Identifying High CPU Consumption
First, launch the application in the background:
nohup java -jar JvmProject.jar &
[1] 1790
Use top to identify the pr ...
Posted on Thu, 14 May 2026 19:35:22 +0000 by Iank1968