Alguien sabe porque no me funciona este ejemplo:
Les comento que he instalado sin problemas el JSLT sobre Jboss:
Código:
Lo raro es que LA PRIMERA linea si funciona sin probelmas:<%@ 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>
Código:
pero cuando intento utilizar "${value}" no funciona.<c:out value="Hola mundo"/>
Gracias por su ayuda