JVM Configuration: Command-Line Tools and Performance Tuning Parameters

Overview of JVM Parameters JVM parameters are categorized based on their stability and purpose. Understanding these is essential for fine-tuning application performance and troubleshooting memory issues. 1. Standard Parameters These are stable options across different versions of the Java Virtual Machine. Common examples include: -version: Dis ...

Posted on Sat, 29 Aug 2026 16:44:13 +0000 by okuto1973

Using Arthas for Java Debugging and Common Commands

This article demonstrates how to use Arthas, a popular diagnostic tool for Java appplications, to troubleshoot common production issues. We'll walk through a sample project with three problematic endpoints and then show how Arthas commands help identify and fix them. Setting Up a Demo Application First, create a Spring Boot application with thr ...

Posted on Wed, 15 Jul 2026 16:13:33 +0000 by marco839