Results 1 to 2 of 2
  1. #1
    Join Date
    Oct 2008
    Posts
    123

    Lightbulb How to check JSP version?

    How to check JSP and Tomcat version ?

    You can easily check the JSP version. You need to create test.jsp page under your account and add the following code into that file and access the test.jsp page by using browser " http://domainname/test.jsp " then it shows the tomcat version ,JSP version and servlet version.

    ==================
    Working with server: <%= application.getServerInfo() %><br>
    Servlet Specification: <%= application.getMajorVersion() %>.<%= application.getMinorVersion() %> <br>
    JSP version: <%= JspFactory.getDefaultFactory().getEngineInfo().get SpecificationVersion() %><br>
    ========================

    Thanks

  2. #2
    Join Date
    Mar 2009
    Posts
    402

    Default

    Nice find, thanks for sharing

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •