%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
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;
%>
<%=
Bootcamp editBootcampList = (Bootcamp)request.getAttribute("id");
if (editBootcampList) {
}%>