<%@ page contentType="text/html;charset=UTF-8" language="java" %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> JSP Page

CREAR BOOTCAMP

<%@ page import="com.roshka.proyectofinal.entity.Lenguaje, com.roshka.proyectofinal.entity.Bootcamp, com.roshka.proyectofinal.lenguaje.LenguajeDao, com.roshka.proyectofinal.bootcamp.BootcampDao, com.roshka.proyectofinal.entity.Profesor, com.roshka.proyectofinal.profesor.ProfesorDao, java.util.List,java.util.Iterator" %> <% LenguajeDao lenDao = new LenguajeDao(); List listLenguaje = lenDao.listar(); Iterator iter = listLenguaje.iterator(); Lenguaje len = null; ProfesorDao profeDao = new ProfesorDao(); List listProfesor = profeDao.listar(); Iterator iterProfe = listProfesor.iterator(); Profesor profe = null; %>

<% BootcampDao bootDao = new BootcampDao(); List listBoot = bootDao.listar(); Iterator iterBoot = listBoot.iterator(); Bootcamp boot = null; %> <% while(iterBoot.hasNext()){ boot = iterBoot.next(); %> <% } %>
Titulo Descripcion fecha de Inicio Fecha de Fin Lenguaje Profesor Activo
<%= boot.getTitulo() %> <%= boot.getDescripcion() %> <%= boot.getFecha_inicio() %> <%= boot.getFecha_fin() %> <%= boot.getNombre_lenguaje() %> <%= boot.getNombre_profesor() + " " + boot.getApellido_profesor() %> <%= boot.getActivo() %>
>
>