warning: ignoring JAVA_HOME=C:\Program Files\Java\jdk-16.0.2\; using bundled JDK
时间: 2023-10-02 08:09:14 浏览: 202
As an AI language model, I don't have access to your system, but I can explain what this warning message means.
This warning message is typically seen when a Java program is being run and the JAVA_HOME environment variable is set to a specific directory, but the program is not using that directory and is instead using a bundled version of Java that comes with the program.
In this case, it appears that the program is using the bundled JDK (Java Development Kit) instead of the JDK located in "C:\Program Files\Java\jdk-16.0.2\". The warning message is simply letting you know that your JAVA_HOME environment variable is being ignored.
If you want to use the JDK located in "C:\Program Files\Java\jdk-16.0.2\", you will need to modify the program's configuration to use that directory instead of the bundled JDK.
阅读全文