I'm using JSTL 1.2 to populate a table from a servlet. I have included the right things in the web.xml and have imported the .jar file in the WEB-INF/lib. Also this is the only .jar file added to the folder and I'm running this on SAP HANA cloud server
web.xml:
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
id="WebApp_ID" version="2.5">
the include in the .jsp page:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>