JDK_JAVA_OPTIONS vs JAVA_TOOL_OPTIONS
1. Introduction JDK_JAVA_OPTIONS and JAVA_TOOL_OPTIONS are environment variables used to pass Java Virtual Machine (JVM) options to configure the JVM without modifying the scripts. In this article, I will demonstrate the JVM options configuration between JDK_JAVA_OPTIONS vs JAVA_TOOL_OPTIONS via the command line interface (CLI). 2. What is JDK_JAVA_OPTIONS? JDK 9 introduced JDK_JAVA_OPTIONS that prepends its content …
