Tomcat: How to find out running tomcat version

前端 未结 27 1891
臣服心动
臣服心动 2020-11-30 16:18

I\'m trying to get Appfuse + tomcat + jRebel working.

Appfuse by default uses Cargo to download tomcat (ver. 7.0.33) and deploy the application to it. I wish to use

27条回答
  •  旧巷少年郎
    2020-11-30 17:17

    Using the release notes

    In the main Tomcat folder you can find the RELEASE-NOTES file which contains the following lines (~line 20-21):

                    Apache Tomcat Version 8.0.22
                            Release Notes
    

    Or you can get the same information using command line:

    • Windows:

      type RELEASE-NOTES | find "Apache Tomcat Version"
      

      Output:

                   Apache Tomcat Version 8.0.22
      
    • Linux:

      cat RELEASE-NOTES | grep "Apache Tomcat Version"
      

      Output:

                   Apache Tomcat Version 8.0.22
      

提交回复
热议问题