Salve gente, sto tentando di creare un programma di paginazione per il mio database. La servlet una volta connessa dovrebbe mandare un arralist alla jsp che dovrebbe creare la lista. Per accedere la meglio volevo usare un for each.
E' la prima volta che la uso, ho importato in webinf la jstl-1.2 (uso tomcat 7 quindi dovrebbe essere compatibile)
ma quando invoco il tag c: mi da errore... qualcuno potrebbe darmi una mano?
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ page import="java.util.*" %>
<%@ page import="memorizzazione.MemorizzazioneProd" %>
<%@ page import="java.util.ArrayList" %>
<%@ taglib prefix="c" uri="
http://java.sun.com/jstl/cor" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dt">
<html>
<style>
.visualizzazione *
{
float:left;
}
.visualizzazione>*
{
width:calc( 25% - 4px);
height:100px;
border:solid black 2px;
float:left;
}
.immagine{
background-color:blue;
}
.immagine>*
{
height:100%;
}
</style>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Visualizzazione</title>
</head>
<body>
<%
<c: forEach items= "${utenti}" var="utente">
<c out value="${utente.nome}"/>
</c:forEach>
%>
</body>
</html>