me trató con códigos jstl. La excepción esweb.xml de jstl
org.apache.jasper.JasperException: El URI absoluta: http://java.sun.com/jsp/jstl/core no se puede resolver, ya sea en los archivos jar desplegados con esta aplicación
Estoy usando Eclipse o web.xml. Agregué jstl.jar
y standard.jar
. ¿Qué debería dar en web.xml
ahora? No sé qué regalar en <taglib>
.
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<c:forEach var = "userName" items = "${name}">
<tr>
<td>${userName}</td>
</tr>
</c:forEach>
</body>
</html>
¿Qué contenedor de servlet está utilizando? – skaffman
Estoy usando Tomcat 6.0 – Sumithra
Muéstranos un ejemplo JSP – skaffman