JSTL
From Null-pointer
Using JSTL
- Download the Standard 1.1 Taglib from Jakarta Taglibs
- Follow the installation instructions
Including in a JSP
To use a tag library in your JSP:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
You can use multiple taglibs:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@ taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql" %> <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>

