which java version does tomcat use

后端 未结 5 980
情书的邮戳
情书的邮戳 2020-12-20 12:49

I have set the JAVA_HOME to C:\\Program Files\\Java\\jdk1.5.0_11
I have set the Classpath to C:\\Program Files\\Java\\jre1.5

相关标签:
5条回答
  • 2020-12-20 12:49

    If you are running Tomcat from Eclipse, the JVM version that Tomcat will use is the one that is the checked JRE in the Installed JREs.

    Example:

    Check:

    Bonus:

    If you want to find out which Tomcat's version is compatible with which version of Java, check it out here

    0 讨论(0)
  • 2020-12-20 13:02

    You can choose by altering catalina.bat/catalina.sh, your set up will use JAVA_HOME, unless you change setenv.bat.

    just type java -version into your dos prompt to see your default java version, which programs will use unless you explicity tell them not to.

    0 讨论(0)
  • 2020-12-20 13:13

    I found this command helpful. From your tomcat install directory.

    Linux

    java -cp lib/catalina.jar org.apache.catalina.util.ServerInfo
    

    Window

    java.exe -cp lib\catalina.jar org.apache.catalina.util.ServerInfo
    

    Sample output

    Server version: SpringSource tc Runtime/2.0.4.RELEASE
    Server built: August 3 2010 0710
    Server number: 6.0.28.29
    OS Name: Linux
    OS Version: 2.6.18-194.11.1.el5
    Architecture: i386
    JVM Version: 1.6.0_21-b06
    JVM Vendor: Sun Microsystems Inc.
    

    Reference at https://confluence.atlassian.com/confkb/how-to-determine-your-version-of-tomcat-and-java-331914173.html

    0 讨论(0)
  • 2020-12-20 13:14

    You can look up the Java version Tomcat is really running with in the manager app, which is installed by default. Go to http://hostname:8080/manager/html (replace hostname by hostname or localhost), scroll to the bottom, there you will find "JVM Version".

    Which JVM is selected depends a lot on the OS and way to install, maybe http://tomcat.apache.org/tomcat-7.0-doc/setup.html will help.

    E.g. if you are running Windows with Tomcat with the service wrapper (I would recommend this for Windows), you can set the path to the JVM directly in the tray icon -> Configure Tomcat. In the Java tab e.g. set Java Virtual Machine to "D:\java\jdk1.6.0_35\jre\bin\server\jvm.dll" (disabled "use default") or where your JVM resides -> you need to specify the complete path to the jvm.dll.

    Regarding getting to know which Java the system is running on: That's difficult to answer, there isn't really one Java version that the system is running as such. E.g. for Windows there may be one Java version set in the PATH, a potentially different one in JAVA_HOME / JRE_HOME / ..., one (or more) set in the registry, a certain version plugin active in each web browser used for applets etc. You have to check in the part you are interested in. Most good Java apps will display the version used somewhere, in logs, about dialogs or so. For Firefox you can check in the add-ons / plug-ins list. A Java exe wrapper like JSmooth can search for Java in different places and choose the most suitable, e.g. the newest, not necessarily the most "exposed".

    0 讨论(0)
  • 2020-12-20 13:15

    If you don't have the manager application on your server (I didn't), then you can check it like this:

    ps -ef | grep tomcat
    

    The output should list your running server:

    tomcat     741     1 87 01:07 ?        00:01:15 /usr/java/default/bin/../bin/java ...
    

    Now you know where your java is that your tomcat was executed from you can check the version like:

    /usr/java/default/bin/../bin/java -version
    
    0 讨论(0)
提交回复
热议问题