Introducción a la JSTL

De WikiEducator
Saltar a: navegación, buscar



Icon activity.jpg

Actividad

Objetivos

  • Utilizar JSTL en la aplicación

Tareas

  1. Instalación de JSTL
  2. Introducción a JSTL
  3. Etiquetas Básicas JSTL
  4. Modificar MostrarLibro.jsp
  5. Modificar FormularioInsertarLibro.jsp
  6. Modificar FormularioEditarLibro.jsp

Guión

  • Arquitectura java, págs. 132-137
Icon present.gif






Icon present.gif
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" %>