Diferencia entre revisiones de «Usuario:Lmorillas/desarrollo web servidor/jee/intro jstl»
De WikiEducator
Línea 20: | Línea 20: | ||
{{Tip| Instalación}} | {{Tip| Instalación}} | ||
− | + | * Descarga | |
http://search.maven.org/remotecontent?filepath=javax/servlet/jsp/jstl/javax.servlet.jsp.jstl-api/1.2.1/javax.servlet.jsp.jstl-api-1.2.1.jar | http://search.maven.org/remotecontent?filepath=javax/servlet/jsp/jstl/javax.servlet.jsp.jstl-api/1.2.1/javax.servlet.jsp.jstl-api-1.2.1.jar | ||
− | |||
http://search.maven.org/remotecontent?filepath=org/glassfish/web/javax.servlet.jsp.jstl/1.2.1/javax.servlet.jsp.jstl-1.2.1.jar | http://search.maven.org/remotecontent?filepath=org/glassfish/web/javax.servlet.jsp.jstl/1.2.1/javax.servlet.jsp.jstl-1.2.1.jar | ||
− | * | + | * Colócalos en '''WEB-INF/lib''' |
* Añade en tu jsp la línea | * Añade en tu jsp la línea | ||
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> |
Última revisión de 21:31 30 ene 2013
Objetivos
Tareas
Guión
|
Tip: Instalación
- Descarga
http://search.maven.org/remotecontent?filepath=javax/servlet/jsp/jstl/javax.servlet.jsp.jstl-api/1.2.1/javax.servlet.jsp.jstl-api-1.2.1.jar http://search.maven.org/remotecontent?filepath=org/glassfish/web/javax.servlet.jsp.jstl/1.2.1/javax.servlet.jsp.jstl-1.2.1.jar
- Colócalos en WEB-INF/lib
- Añade en tu jsp la línea
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- Otros tags:
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql" %>