Based on this excellent post I came up with the following instructions for upgrading from JSTL 1.1.
- Update URI in JSP pages to use JSTL 1.1.
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- Install in WEB-INF/lib the two JSTL 1.1 jars, standard.jar and jstl.jar. You can get these from The Jakarta Site – Standard 1.1 Taglib Downloads.
- Update the start of web.xml to look like this.
<?xml version="1.0" encoding="ISO-8859-1"?> <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">