Diferencia entre revisiones de «Usuario:Lmorillas/desarrollo web servidor/jee/intro jstl»
De WikiEducator
(4 revisiones intermedias por el mismo usuario no mostrado) | |||
Línea 13: | Línea 13: | ||
== Guión == | == Guión == | ||
* Arquitectura java, págs. 132-137 | * Arquitectura java, págs. 132-137 | ||
+ | {{Tip| | ||
+ | ==Más doc== | ||
+ | * http://docs.oracle.com/javaee/5/tutorial/doc/bnake.html | ||
+ | }} | ||
}} | }} | ||
{{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=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" %> | <%@ 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" %> |
Ú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" %>