I have a Java
project and would like to know which version of JSP
is being used in this project. Example, I have an old project, how do I get this information?
I have a Java
project and would like to know which version of JSP
is being used in this project. Example, I have an old project, how do I get this information?
Create a JSP and put the following code there:
Servlet container version:
<%= application.getMajorVersion() %>.<%= application.getMinorVersion() %>
JSP version:
<%= JspFactory.getDefaultFactory().getEngineInfo().getSpecificationVersion() %>