0

I am developing a webstore as a pet project and converting JSP pages that use scriptlets to EL and JSTL based JSP pages. I am using NetBeans and Tomcat 7. My question is how can I know which version of EL is getting used ?

Nital
  • 5,784
  • 26
  • 103
  • 195

1 Answers1

1

Go to your Tomcat installation, go to the /lib directory, and open the el-api.jar file with a ZIP manager. Under /META-INF/MANIFEST.MF, you'll find something like

Specification-Version: 2.2

That's your EL version.

Apparently the version of EL go with the version of the Servlet API. See here.

Community
  • 1
  • 1
Sotirios Delimanolis
  • 274,122
  • 60
  • 696
  • 724