Saludos compañeros
Alguien sabe porque no me funciona este ejemplo:
Les comento que he instalado sin problemas el JSLT sobre Jboss:
Código:
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt_rt" %>
<%@ taglib prefix="x" uri="http://java.sun.com/jstl/xml_rt" %>
<%@ taglib prefix="sql" uri="http://java.sun.com/jstl/sql_rt" %>
<html>
<body>
<c:out value="Hola mundo"/>
<c:forEach items="${header}" var="item">
<c:out value="${item}"/><br/>
</c:forEach>
</body>
</html>
Lo raro es que LA PRIMERA linea si funciona sin probelmas:
Código:
<c:out value="Hola mundo"/>
pero cuando intento utilizar "${value}" no funciona.
Gracias por su ayuda