Installing JSTL 1.2 API JAR File

This section provides a tutorial example on how to install JSTL 1.2 API JAR file on Tomcat server to support JSTL loop and other tags.

As you can from the previous section, installing just GlassFish JSTL 1.2 implementation JAR file on the Tomcat server is not enough to support all JSTL tags. The JSTL 1.2 API JAR file must also be installed.

In 2012, I was able to download the JSTL 1.2 API JAR by the Oracle GlassFish project at http://jstl.java.net/. But now that Website is replaced by https://javaee.github.io/jstl-api/. The new site allows you to use github tools to download and build the JAR files.

Another way to obtain the JSTL 1.2 API JAR files is use the Java EE (Enterprise Edition) SDK package, which should include the JSTL 1.2 the API JAR.

1. Down load java_ee_sdk-8.zip and unzip it to the \local\glassfish5 directory, as described in the previous tutorial.

2. Copy the the JSTL 1.2 API JAR files to my Tomcat server:

herong> copy                                                        \
   \local\glassfish5\glassfish\modules\javax.servlet.jsp.jstl-api.jar \
   \local\tomcat\webapps\ROOT\WEB-INF\lib

3. Restart Tomcat. All JSTL 1.2 tags should work on my Tomcat default application now. See next tutorial to return to JSTL loop tag example.

Table of Contents

 About This Book

 JSP (JavaServer Pages) Overview

 Tomcat Installation on Windows Systems

 JSP Scripting Elements

 Java Servlet Introduction

 JSP Implicit Objects

 Syntax of JSP Pages and JSP Documents

 JSP Application Session

 Managing Cookies in JSP Pages

 JavaBean Objects and "useBean" Action Elements

 Managing HTTP Response Header Lines

 Non-ASCII Characters Support in JSP Pages

 Performance of JSP Pages

 EL (Expression Language)

Overview of JSTL (JSP Standard Tag Libraries)

 What is JSTL

 Installing GlassFish JSTL on Tomcat

 "Hello world!" with JSTL

 JSTL in XML Style JSP Pages

 General Syntax of JSTL Tags

 NoClassDefFoundError - LoopTag/ForEachTag

Installing JSTL 1.2 API JAR File

 JSTL Example - Loop Tag on Map Objects

 JSTL Core Library

 JSP Custom Tags

 JSP Java Tag Interface

 Custom Tag Attributes

 Multiple Tags Working Together

 File Upload Test Application

 Using Tomcat on CentOS Systems

 Using Tomcat on macOS Systems

 Connecting to SQL Server from Servlet

 Developing Web Applications with Servlet

 Archived Tutorials

 References

 Full Version in PDF/EPUB