1. Overview
IntelliJ IDEA is among the most popular and powerful IDEs for developing software in various programming languages.
In this tutorial, we’ll learn how to configure JVM arguments in IntelliJ IDEA, allowing us to tune the JVM for development and debugging.
2. Basics of JVM Arguments
We can choose JVM arguments to match our specific needs depending on the requirements of our application. The correct JVM arguments can improve an application’s performance and stability and make it easier to debug our application.
2.1. Types of JVM Arguments
There are a few categories of JVM arguments:
- Memory allocation – such as -Xms (initial heap size) or -Xmx (maximum heap size)
- Garbage collection – such as -XX:+UseConcMarkSweepGC (enables the concurrent mark-sweep garbage collector) or -XX:+UseParallelGC (enables the parallel garbage collector)
- Debugging – such as -XX:+HeapDumpOnOutOfMemoryError (heap dump when an OutOfMemoryError occurs) or -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005 for remote debugging through JDWP on port 5005.
- System properties – such as -Djava.version (Java version) or -Dcustom.property=value (defines a custom property with its value).
2.2. When to Use JVM Arguments
The decision to set specific JVM arguments depends on several factors, including the complexity of the application and its performance requirements.
While setting JVM arguments is sometimes a technical necessity, it may also be a part of the team’s workflow. For instance, a team may have a policy of setting the JVM argument for enabling profiling to identify performance bottlenecks.
Using commonly used JVM arguments can enhance our application’s performance and functionality.
3. Setting JVM Arguments in IntelliJ IDEA
Before we delve into the steps for setting up JVM arguments in the IDE, let’s first understand why it can be beneficial.
3.1. Why JVM Arguments Matter in IntelliJ IDEA
IntelliJ IDEA offers a user-friendly interface for configuring JVM arguments when the IDE runs our JVM. This is easier than going to the command line and running java manually.
Alternative methods of setting JVM arguments benefit from being environment-independent, as the configurations made in IntelliJ IDEA are specific to the IDE.
3.2. Setting JVM Arguments With Run/Debug Configurations
Let’s launch IntelliJ IDEA and open an existing project or a new one for which we’ll configure JVM arguments. We continue by clicking “Run” and selecting “Edit Configurations…”.
From there, we can create a run/debug configuration for our application by clicking the plus symbol and selecting “Application”:
We’ll add the text field for adding JVM arguments by selecting “Add VM options” in the “Modify options” dropdown and add all the required JVM arguments to the newly added text field.
With the desired configuration in place, we can run or debug our application using the configured JVM arguments.
4. Setting JVM Arguments With a VM Options File
Using a file with custom JVM arguments in IntelliJ IDEA is convenient for managing complex or extensive configurations, offering a more organized and manageable approach.
Let’s open a text editor, add all the required JVM arguments, and save the file with a meaningful name and the .vmoptions extension:
For instance, we might name it custom_jvm_args.vmoptions.
Following the steps from the previous section in “Run/Debug Configurations”, let’s add the text field for JVM arguments.
Now, we’ll add the path to our custom file and not individual JVM arguments using the following format: @path/to/our/custom_jvm_args.vmoptions:
5. Managing IntelliJ IDEA JVM Arguments
Configuring JVM arguments for IntelliJ IDEA isn’t typical for regular development, but we need to adjust them in some scenarios.
We might be working with an atypically large project or complex codebase, which would require the IDE to run with more memory than the default settings provide. Alternatively, we might use specific external tools or plugins integrated into IntelliJ IDEA, which require specific JVM arguments to run correctly.
A default configuration is located in the IDE’s installation directory. However, it isn’t recommended that this be changed as it gets overridden when we upgrade the IDE.
Instead, let’s edit a copy of the default configuration, which overrides the default configuration, by navigating to “Help” and then “Edit Custom VM Options…”:
Here, we can set the required JVM arguments.
6. Conclusion
In this article, we looked at setting JVM arguments in IntelliJ IDEA for our applications. We discussed the importance of setting JVM arguments during development.
Additionally, we briefly discussed configuring the JVM arguments for the IDE and the scenarios that might require it.