Quite some environments do not come with JSTL: Eclipse for JEE (Galileo), Tomcat 6, Jetty 6... Follow these steps to add them:
- Add JSTL
Grab the JSTL API (jstl-api.jar) and JSTL implementation (jstl-impl-1.2.jar).
Add the jars to your Container (e.g. Tomcat) lib directory (or your webapp lib).
Alternatively add them using maven dependencies:
12345<
dependency
>
<
groupId
>javax.servlet</
groupId
>
<
artifactId
>jstl</
artifactId
>
<
version
>1.2</
version
>
</
dependency
>
- Make sure the web-app root element in web.xml supports at least servlet 2.4/JSP 2.0 If you use <taglib> elements in web.xml, make sure they are embedded in a <jsp-config> element.1234
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee