Disclaimer: This guide was generated by an AI, reviewed by us, and is intended as a helpful resource. However, it may still contain errors.
Disclaimer: Diese Anleitung wurde von einer KI generiert, von uns geprüft und soll als Hilfestellung dienen. Dennoch können Fehler enthalten sein.
How to Change the Java Version for Apache Tomcat on Windows (Simple Guide)
If you want to change the Java version used by Apache Tomcat on Windows, follow these steps:
Step 1: Check the Current Java Version
- Open the Command Prompt:
- Press
Windows + R
, typecmd
, and press Enter.
- Press
- Type the following command and press Enter:
java -version
- This will show the current Java version. Write it down for reference.
Step 2: Install the New Java Version
- Download and install the new Java version (e.g., Zulu JDK) if you haven’t already.
- Follow the steps from the this guide to install Zulu Java.
Step 3: Locate the Tomcat Installation Folder
- Find the folder where Tomcat is installed (e.g.,
C:\Program Files\Apache Tomcat
).
Step 4: Update the JAVA_HOME
Variable
- Open Control Panel > System > Advanced system settings.
- Click Environment Variables.
- Under System variables, find the
JAVA_HOME
variable.- If it doesn’t exist, click New and create it.
- Set the value of
JAVA_HOME
to the installation folder of the new Java version (e.g.,C:\Program Files\Zulu\zulu-21
). - Click OK to save the changes.
Step 5: Update the JRE_HOME
Variable (Optional)
- In the same Environment Variables window, check if
JRE_HOME
exists. - If it does, update it to point to the new Java installation folder (e.g.,
C:\Program Files\Zulu\zulu-21
). - If it doesn’t exist, you can skip this step.
Step 6: Restart Tomcat
- Open the Command Prompt.
- Navigate to the Tomcat
bin
folder:
cd C:\Program Files\Apache Tomcat\bin
- Stop Tomcat if it’s running:
shutdown.bat
- Start Tomcat again:
startup.bat
Step 7: Verify the Java Version in Tomcat
- Open your browser and go to the Tomcat manager page (e.g.,
http://localhost:8080/manager/status
). - Log in (if required) and check the Server Information section.
- Look for the Java version to confirm it has been updated.
Done!
War dieser Artikel hilfreich?
Das ist großartig!
Vielen Dank für das Feedback
Leider konnten wir nicht helfen
Vielen Dank für das Feedback
Feedback gesendet
Wir wissen Ihre Bemühungen zu schätzen und werden versuchen, den Artikel zu korrigieren