diff --git a/src/main/java/com/roshka/proyectofinal/bootcamp/BootcampDao.java b/src/main/java/com/roshka/proyectofinal/bootcamp/BootcampDao.java index 0edd82f..c07a2c7 100644 --- a/src/main/java/com/roshka/proyectofinal/bootcamp/BootcampDao.java +++ b/src/main/java/com/roshka/proyectofinal/bootcamp/BootcampDao.java @@ -3,9 +3,9 @@ package com.roshka.proyectofinal.bootcamp; import com.roshka.proyectofinal.DataBase; import com.roshka.proyectofinal.entity.Bootcamp; -import java.sql.Connection; -import java.sql.DriverManager; -import java.sql.PreparedStatement; +import java.sql.*; +import java.util.ArrayList; +import java.util.List; public class BootcampDao { @@ -33,4 +33,107 @@ public class BootcampDao { return status; } + public static int update(Bootcamp b){ + int status=0; + try{ + Connection con= DataBase.getConnection(); + PreparedStatement ps=con.prepareStatement( + "update Bootcamp set id_lenguaje=?,id_profesor=?,fecha_inicio=?,fecha_fin=?,descripcion=?,titulo=?,activo=? where id=?"); + ps.setInt(1,b.getId_lenguaje()); + ps.setInt(2,b.getId_profesor()); + ps.setString(3,b.getFecha_inicio()); + ps.setString(4,b.getFecha_fin()); + ps.setString(5,b.getDescripcion()); + ps.setString(6,b.getTitulo()); + ps.setBoolean(7,b.getActivo()); + ps.setInt(8,b.getId()); + + status=ps.executeUpdate(); + + con.close(); + }catch(Exception ex){ex.printStackTrace();} + + return status; + } + + + public static List listar(){ + ArrayList list = new ArrayList<>(); + String sql = "select a.id, a.fecha_inicio, a.fecha_fin, a.descripcion, a.titulo,\n" + + "a.activo, b.nombre_lenguaje, c.nombre, c.apellido \n" + + "from bootcamp a\n" + + "inner join lenguaje b\n" + + "on a.id_lenguaje=b.id\n" + + "inner join profesor c\n" + + "on a.id_profesor=c.id"; + + try{ + Connection con= DataBase.getConnection(); + PreparedStatement ps=con.prepareStatement(sql); + ResultSet rs = ps.executeQuery(); + + + while(rs.next()){ + Bootcamp boot = new Bootcamp(); + + boot.setId(rs.getInt("id")); + boot.setActivo(rs.getBoolean("activo")); + boot.setDescripcion(rs.getString("descripcion")); + boot.setTitulo(rs.getString("titulo")); + boot.setFecha_fin(rs.getString("fecha_fin")); + boot.setFecha_inicio(rs.getString("fecha_inicio")); + boot.setNombre_profesor(rs.getString("nombre")); + boot.setApellido_profesor(rs.getString("apellido")); + boot.setNombre_lenguaje(rs.getString("nombre_lenguaje")); + + list.add(boot); + } + + con.close(); + } catch (SQLException e) { + throw new RuntimeException(e); + } + return list; + } + + public static int delete(int id){ + int status=0; + try{ + Connection con=DataBase.getConnection(); + PreparedStatement ps=con.prepareStatement("delete from bootcamp where id=?"); + ps.setInt(1,id); + status=ps.executeUpdate(); + + con.close(); + }catch(Exception e){e.printStackTrace();} + + return status; + } + + + public static Bootcamp getBootcampById(int id){ + Bootcamp b=new Bootcamp(); + + try{ + Connection con=DataBase.getConnection(); + PreparedStatement ps=con.prepareStatement("select * from bootcamp where id=?"); + ps.setInt(1,id); + ResultSet rs=ps.executeQuery(); + if(rs.next()){ + b.setId(rs.getInt("id")); + b.setActivo(rs.getBoolean("activo")); + b.setDescripcion(rs.getString("descripcion")); + b.setTitulo(rs.getString("titulo")); + b.setFecha_fin(rs.getString("fecha_fin")); + b.setFecha_inicio(rs.getString("fecha_inicio")); + b.setNombre_profesor(rs.getString("nombre")); + b.setApellido_profesor(rs.getString("apellido")); + b.setNombre_lenguaje(rs.getString("nombre_lenguaje")); + b.setImagen(rs.getString("imagen")); + } + con.close(); + }catch(Exception ex){ex.printStackTrace();} + + return b; + } } diff --git a/src/main/java/com/roshka/proyectofinal/bootcamp/DeleteServlet.java b/src/main/java/com/roshka/proyectofinal/bootcamp/DeleteServlet.java new file mode 100644 index 0000000..59b883e --- /dev/null +++ b/src/main/java/com/roshka/proyectofinal/bootcamp/DeleteServlet.java @@ -0,0 +1,20 @@ +package com.roshka.proyectofinal.bootcamp; + +import java.io.IOException; +import jakarta.servlet.ServletException; +import jakarta.servlet.annotation.WebServlet; +import jakarta.servlet.http.HttpServlet; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; + +@WebServlet("/DeleteServletBootcamp") +public class DeleteServlet extends HttpServlet { + protected void doGet(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + String sid=request.getParameter("id"); + int id=Integer.parseInt(sid); + System.out.println("Este es el id " + id); + BootcampDao.delete(id); + response.sendRedirect("formulario_bootcamp.jsp"); + } +} diff --git a/src/main/java/com/roshka/proyectofinal/bootcamp/EditServlet.java b/src/main/java/com/roshka/proyectofinal/bootcamp/EditServlet.java new file mode 100644 index 0000000..48035cd --- /dev/null +++ b/src/main/java/com/roshka/proyectofinal/bootcamp/EditServlet.java @@ -0,0 +1,24 @@ +package com.roshka.proyectofinal.bootcamp; + +import jakarta.servlet.RequestDispatcher; +import jakarta.servlet.http.HttpServlet; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; +import jakarta.servlet.ServletException; +import java.io.IOException; + + +public class EditServlet extends HttpServlet { + + protected void doGet(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + response.setContentType("text/html"); + String sid=request.getParameter("id"); + int id=Integer.parseInt(sid); + + request.setAttribute("id", id); + RequestDispatcher rd = request.getRequestDispatcher("formulario_bootcamp.jsp"); + rd.forward(request, response); + + } +} \ No newline at end of file diff --git a/src/main/java/com/roshka/proyectofinal/bootcamp/SaveServlet.java b/src/main/java/com/roshka/proyectofinal/bootcamp/SaveServlet.java index d931473..cd3cf1d 100644 --- a/src/main/java/com/roshka/proyectofinal/bootcamp/SaveServlet.java +++ b/src/main/java/com/roshka/proyectofinal/bootcamp/SaveServlet.java @@ -28,8 +28,6 @@ public class SaveServlet extends HttpServlet { activo = true; } - - Bootcamp b =new Bootcamp( id_lenguaje, id_profesor, fecha_inicio, fecha_fin, descripcion, imagen, titulo, activo); int status= BootcampDao.save(b); diff --git a/src/main/java/com/roshka/proyectofinal/entity/Bootcamp.java b/src/main/java/com/roshka/proyectofinal/entity/Bootcamp.java index af84e5a..04e2944 100644 --- a/src/main/java/com/roshka/proyectofinal/entity/Bootcamp.java +++ b/src/main/java/com/roshka/proyectofinal/entity/Bootcamp.java @@ -2,7 +2,7 @@ package com.roshka.proyectofinal.entity; public class Bootcamp { private int id, id_lenguaje, id_profesor; - private String fecha_inicio,fecha_fin,descripcion,imagen,titulo; + private String fecha_inicio,fecha_fin,descripcion,imagen,titulo, nombre_profesor, apellido_profesor, nombre_lenguaje; private boolean activo; public Bootcamp() { @@ -24,6 +24,10 @@ public class Bootcamp { return id; } + public void setId(int id) { + this.id = id; + } + public int getId_lenguaje() { return id_lenguaje; } @@ -81,12 +85,35 @@ public class Bootcamp { } public boolean getActivo() { - return activo; + return this.activo; } - public void setActivo(boolean activo) { - this.activo = activo; + public boolean setActivo(boolean activo) { + return this.activo = activo; + } + + public String getNombre_profesor() { + return nombre_profesor; + } + + public void setNombre_profesor(String nombre_profesor) { + this.nombre_profesor = nombre_profesor; } + public String getApellido_profesor() { + return apellido_profesor; + } + + public void setApellido_profesor(String apellido_profesor) { + this.apellido_profesor = apellido_profesor; + } + + public String getNombre_lenguaje() { + return nombre_lenguaje; + } + + public void setNombre_lenguaje(String nombre_lenguaje) { + this.nombre_lenguaje = nombre_lenguaje; + } } diff --git a/src/main/java/com/roshka/proyectofinal/entity/Profesor.java b/src/main/java/com/roshka/proyectofinal/entity/Profesor.java index 94ee265..113dcf9 100644 --- a/src/main/java/com/roshka/proyectofinal/entity/Profesor.java +++ b/src/main/java/com/roshka/proyectofinal/entity/Profesor.java @@ -15,6 +15,14 @@ public class Profesor { this.correo = correo; } + public int getId() { + return id; + } + + public void setId(int id) { + this.id = id; + } + public String getNombre() { return nombre; } diff --git a/src/main/java/com/roshka/proyectofinal/lenguaje/ObtenerLenguaje.java b/src/main/java/com/roshka/proyectofinal/lenguaje/DeleteServlet.java similarity index 56% rename from src/main/java/com/roshka/proyectofinal/lenguaje/ObtenerLenguaje.java rename to src/main/java/com/roshka/proyectofinal/lenguaje/DeleteServlet.java index a4d20e4..777edc4 100644 --- a/src/main/java/com/roshka/proyectofinal/lenguaje/ObtenerLenguaje.java +++ b/src/main/java/com/roshka/proyectofinal/lenguaje/DeleteServlet.java @@ -1,7 +1,5 @@ package com.roshka.proyectofinal.lenguaje; -import com.roshka.proyectofinal.entity.Lenguaje; -import jakarta.servlet.RequestDispatcher; import jakarta.servlet.ServletException; import jakarta.servlet.annotation.WebServlet; import jakarta.servlet.http.HttpServlet; @@ -9,16 +7,15 @@ import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; import java.io.IOException; -import java.util.List; - -@WebServlet("/ProyectoFinal-Bootcamp/crearBootcamp") -public class ObtenerLenguaje extends HttpServlet { +@WebServlet("/DeleteServletLenguaje") +public class DeleteServlet extends HttpServlet { protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { - List len = LenguajeDao.listar(); - request.setAttribute("listaLenguaje", len); - RequestDispatcher rqd = request.getRequestDispatcher("./formulario_bootcamp.jsp"); - rqd.forward(request, response); + String sid=request.getParameter("id"); + int id=Integer.parseInt(sid); + System.out.println("Este es el id " + id); + LenguajeDao.delete(id); + response.sendRedirect("formulario_lenguaje.jsp"); } } diff --git a/src/main/java/com/roshka/proyectofinal/lenguaje/LenguajeDao.java b/src/main/java/com/roshka/proyectofinal/lenguaje/LenguajeDao.java index 8af253f..4fbcb90 100644 --- a/src/main/java/com/roshka/proyectofinal/lenguaje/LenguajeDao.java +++ b/src/main/java/com/roshka/proyectofinal/lenguaje/LenguajeDao.java @@ -1,6 +1,7 @@ package com.roshka.proyectofinal.lenguaje; import com.roshka.proyectofinal.DataBase; +import com.roshka.proyectofinal.entity.Bootcamp; import com.roshka.proyectofinal.entity.Lenguaje; import jakarta.servlet.RequestDispatcher; @@ -19,6 +20,7 @@ public class LenguajeDao { Connection con= DataBase.getConnection(); PreparedStatement ps=con.prepareStatement( "insert into lenguaje (nombre_lenguaje) values (?)"); + ps.setString(1,l.getNombre_lenguaje()); status=ps.executeUpdate(); @@ -49,4 +51,37 @@ public class LenguajeDao { } return list; } + + public static int delete(int id){ + int status=0; + try{ + Connection con=DataBase.getConnection(); + PreparedStatement ps=con.prepareStatement("delete from lenguaje where id=?"); + ps.setInt(1,id); + status=ps.executeUpdate(); + + con.close(); + }catch(Exception e){e.printStackTrace();} + + return status; + } + + + public static Lenguaje getLenguajeById(int id){ + Lenguaje lenguaje=new Lenguaje(); + + try{ + Connection con=DataBase.getConnection(); + PreparedStatement ps=con.prepareStatement("select * from lenguaje where id=?"); + ps.setInt(1,id); + ResultSet rs=ps.executeQuery(); + if(rs.next()){ + lenguaje.setId(rs.getInt("id")); + lenguaje.setNombre_lenguaje(rs.getString("nombre_lenguaje")); + } + con.close(); + }catch(Exception ex){ex.printStackTrace();} + + return lenguaje; + } } diff --git a/src/main/java/com/roshka/proyectofinal/lenguaje/SaveServlet.java b/src/main/java/com/roshka/proyectofinal/lenguaje/SaveServlet.java index 61b907c..faa57a8 100644 --- a/src/main/java/com/roshka/proyectofinal/lenguaje/SaveServlet.java +++ b/src/main/java/com/roshka/proyectofinal/lenguaje/SaveServlet.java @@ -2,6 +2,7 @@ package com.roshka.proyectofinal.lenguaje; import com.roshka.proyectofinal.entity.Lenguaje; import jakarta.servlet.ServletException; +import jakarta.servlet.annotation.WebServlet; import jakarta.servlet.http.HttpServlet; import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; @@ -9,6 +10,7 @@ import jakarta.servlet.http.HttpServletResponse; import java.io.IOException; import java.io.PrintWriter; +@WebServlet("/SaveServletLenguaje") public class SaveServlet extends HttpServlet { protected void doPost(HttpServletRequest request, HttpServletResponse response) @@ -23,7 +25,7 @@ public class SaveServlet extends HttpServlet { int status=LenguajeDao.save(l); if(status>0){ out.print("

Record saved successfully!

"); - request.getRequestDispatcher("index.html").include(request, response); + request.getRequestDispatcher("formulario_lenguaje.jsp").include(request, response); }else{ out.println("Sorry! unable to save record"); } diff --git a/src/main/java/com/roshka/proyectofinal/profesor/DeleteServlet.java b/src/main/java/com/roshka/proyectofinal/profesor/DeleteServlet.java new file mode 100644 index 0000000..b26602a --- /dev/null +++ b/src/main/java/com/roshka/proyectofinal/profesor/DeleteServlet.java @@ -0,0 +1,20 @@ +package com.roshka.proyectofinal.profesor; + +import jakarta.servlet.ServletException; +import jakarta.servlet.annotation.WebServlet; +import jakarta.servlet.http.HttpServlet; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; + +import java.io.IOException; + +@WebServlet("/DeleteServletProfesor") +public class DeleteServlet extends HttpServlet { + protected void doGet(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + String sid=request.getParameter("id"); + int id=Integer.parseInt(sid); + ProfesorDao.delete(id); + response.sendRedirect("formulario_profesor.jsp"); + } +} diff --git a/src/main/java/com/roshka/proyectofinal/profesor/ProfesorDao.java b/src/main/java/com/roshka/proyectofinal/profesor/ProfesorDao.java index cdddabb..95dddfa 100644 --- a/src/main/java/com/roshka/proyectofinal/profesor/ProfesorDao.java +++ b/src/main/java/com/roshka/proyectofinal/profesor/ProfesorDao.java @@ -5,6 +5,10 @@ import com.roshka.proyectofinal.entity.Profesor; import java.sql.Connection; import java.sql.PreparedStatement; +import java.sql.ResultSet; +import java.sql.SQLException; +import java.util.ArrayList; +import java.util.List; public class ProfesorDao { @@ -26,4 +30,67 @@ public class ProfesorDao { return status; } + + public static List listar(){ + ArrayList list = new ArrayList<>(); + String sql = "select * from profesor"; + + try{ + Connection con= DataBase.getConnection(); + PreparedStatement ps=con.prepareStatement(sql); + ResultSet rs = ps.executeQuery(); + + + while(rs.next()){ + Profesor profe = new Profesor(); + profe.setId(rs.getInt("id")); + profe.setNombre(rs.getString("nombre")); + profe.setApellido(rs.getString("apellido")); + profe.setNro_cedula(rs.getInt("nro_cedula")); + profe.setCorreo(rs.getString("correo")); + + list.add(profe); + } + + con.close(); + } catch (SQLException e) { + throw new RuntimeException(e); + } + return list; + } + + public static int delete(int id){ + int status=0; + try{ + Connection con=DataBase.getConnection(); + PreparedStatement ps=con.prepareStatement("delete from profesor where id=?"); + ps.setInt(1,id); + status=ps.executeUpdate(); + + con.close(); + }catch(Exception e){e.printStackTrace();} + + return status; + } + + public static Profesor getProfesorById(int id){ + Profesor p=new Profesor(); + + try{ + Connection con=DataBase.getConnection(); + PreparedStatement ps=con.prepareStatement("select * from profesor where id=?"); + ps.setInt(1,id); + ResultSet rs=ps.executeQuery(); + if(rs.next()){ + p.setId(rs.getInt("id")); + p.setNombre(rs.getString("nombre")); + p.setApellido(rs.getString("apellido")); + p.setNro_cedula(rs.getInt("nro_cedula")); + p.setCorreo(rs.getString("correo")); + } + con.close(); + }catch(Exception ex){ex.printStackTrace();} + + return p; + } } diff --git a/src/main/java/com/roshka/proyectofinal/profesor/SaveServlet.java b/src/main/java/com/roshka/proyectofinal/profesor/SaveServlet.java index 526fbe4..8a9aeca 100644 --- a/src/main/java/com/roshka/proyectofinal/profesor/SaveServlet.java +++ b/src/main/java/com/roshka/proyectofinal/profesor/SaveServlet.java @@ -2,6 +2,7 @@ package com.roshka.proyectofinal.profesor; import com.roshka.proyectofinal.entity.Profesor; import jakarta.servlet.ServletException; +import jakarta.servlet.annotation.WebServlet; import jakarta.servlet.http.HttpServlet; import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; @@ -9,6 +10,7 @@ import jakarta.servlet.http.HttpServletResponse; import java.io.IOException; import java.io.PrintWriter; +@WebServlet("/SaveServletProfesor") public class SaveServlet extends HttpServlet { protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { @@ -25,7 +27,7 @@ public class SaveServlet extends HttpServlet { int status=ProfesorDao.save(p); if(status>0){ out.print("

Record saved successfully!

"); - request.getRequestDispatcher("index.html").include(request, response); + request.getRequestDispatcher("formulario_profesor.jsp").include(request, response); }else{ out.println("Sorry! unable to save record"); } diff --git a/src/main/java/com/roshka/proyectofinal/usuario/SaveServlet.java b/src/main/java/com/roshka/proyectofinal/usuario/SaveServlet.java new file mode 100644 index 0000000..1282468 --- /dev/null +++ b/src/main/java/com/roshka/proyectofinal/usuario/SaveServlet.java @@ -0,0 +1,35 @@ +package com.roshka.proyectofinal.usuario; + +import com.roshka.proyectofinal.entity.Usuario; +import com.roshka.proyectofinal.profesor.ProfesorDao; +import jakarta.servlet.ServletException; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; + +import java.io.IOException; +import java.io.PrintWriter; + +public class SaveServlet { + + protected void doPost(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + response.setContentType("text/html"); + PrintWriter out=response.getWriter(); + + String nombre=request.getParameter("nombre"); + String apellido=request.getParameter("apellido"); + String email=request.getParameter("correo"); + String contrasena=request.getParameter("contrasena"); + Usuario u =new Usuario(nombre, apellido, email, contrasena); + + int status= UsuarioDao.save(u); + if(status>0){ + out.print("

Record saved successfully!

"); + request.getRequestDispatcher("index.html").include(request, response); + }else{ + out.println("Sorry! unable to save record"); + } + + out.close(); + } +} diff --git a/src/main/java/com/roshka/proyectofinal/usuario/UsuarioDao.java b/src/main/java/com/roshka/proyectofinal/usuario/UsuarioDao.java new file mode 100644 index 0000000..2a009f1 --- /dev/null +++ b/src/main/java/com/roshka/proyectofinal/usuario/UsuarioDao.java @@ -0,0 +1,30 @@ +package com.roshka.proyectofinal.usuario; + +import com.roshka.proyectofinal.DataBase; +import com.roshka.proyectofinal.entity.Usuario; + +import java.sql.Connection; +import java.sql.PreparedStatement; + +public class UsuarioDao { + + public static int save(Usuario u){ + int status=0; + try{ + Connection con= DataBase.getConnection(); + PreparedStatement ps=con.prepareStatement( + "insert into usuario (nombre,apellido,contrasena,correo) values (?,?,?,?)"); + ps.setString(1,u.getNombre()); + ps.setString(2,u.getApellido()); + ps.setString(3,u.getContrasena()); + ps.setString(4,u.getCorreo()); + + status=ps.executeUpdate(); + + con.close(); + }catch(Exception ex){ex.printStackTrace();} + + return status; + } +} + diff --git a/src/main/webapp/formulario_bootcamp.jsp b/src/main/webapp/formulario_bootcamp.jsp index 9234081..f3de4cc 100644 --- a/src/main/webapp/formulario_bootcamp.jsp +++ b/src/main/webapp/formulario_bootcamp.jsp @@ -13,13 +13,18 @@

Crear Bootcamp

- <%@ page import="com.roshka.proyectofinal.entity.Lenguaje, com.roshka.proyectofinal.lenguaje.LenguajeDao, java.util.List,java.util.Iterator" %> + <%@ 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; + Lenguaje len = null; + + ProfesorDao profeDao = new ProfesorDao(); + List listProfesor = profeDao.listar(); + Iterator iterProfe = listProfesor.iterator(); + Profesor profe = null; %>
@@ -33,6 +38,70 @@ <% } %> + + + +
+ + +
+ +
+ <% + BootcampDao bootDao = new BootcampDao(); + List listBoot = bootDao.listar(); + Iterator iterBoot = listBoot.iterator(); + Bootcamp boot = null; + %> + + + + + + + + + + + + + + <% while(iterBoot.hasNext()){ + boot = iterBoot.next(); + + %> + + + + + + + + + + + + <% } %> + +
TituloDescripcionfecha de InicioFecha de FinLenguajeProfesorActivo
<%= boot.getTitulo() %> <%= boot.getDescripcion() %> <%= boot.getFecha_inicio() %> <%= boot.getFecha_fin() %> <%= boot.getNombre_lenguaje() %> <%= boot.getNombre_profesor() + " " + boot.getApellido_profesor() %> <%= boot.getActivo() %>
+ > + +
+
+
+ > + +
+
diff --git a/src/main/webapp/formulario_lenguaje.jsp b/src/main/webapp/formulario_lenguaje.jsp new file mode 100644 index 0000000..7c58ab0 --- /dev/null +++ b/src/main/webapp/formulario_lenguaje.jsp @@ -0,0 +1,75 @@ +<%@ page contentType="text/html;charset=UTF-8" language="java" %> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> + + + + + + + JSP Page + + + +
+

Crear Lenguaje

+ + <%@ page import="com.roshka.proyectofinal.entity.Lenguaje, com.roshka.proyectofinal.lenguaje.LenguajeDao, java.util.List,java.util.Iterator" %> + +
+ +
+ <% + LenguajeDao lenDao = new LenguajeDao(); + List listLen = lenDao.listar(); + Iterator iterLen = listLen.iterator(); + Lenguaje lenguaje = null; + %> + +
+ + + + + + +
+ + + + + + + + + + + <% while(iterLen.hasNext()){ + lenguaje = iterLen.next(); + + %> + + + + + + <% } %> + +
LenguajeEditarEliminar
<%= lenguaje.getNombre_lenguaje() %>
+ > + +
+
+
+ > + +
+
+ +
+ + + \ No newline at end of file diff --git a/src/main/webapp/formulario_profesor.jsp b/src/main/webapp/formulario_profesor.jsp new file mode 100644 index 0000000..4872868 --- /dev/null +++ b/src/main/webapp/formulario_profesor.jsp @@ -0,0 +1,94 @@ +<%@ page contentType="text/html;charset=UTF-8" language="java" %> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> + + + + + + + JSP Page + + + +
+

Crear Profesor

+ + <%@ page import="com.roshka.proyectofinal.entity.Profesor, com.roshka.proyectofinal.profesor.ProfesorDao, java.util.List,java.util.Iterator" %> + +
+ +
+ <% + ProfesorDao profeDao = new ProfesorDao(); + List listProfe = profeDao.listar(); + Iterator iterProfe = listProfe.iterator(); + Profesor profesor = null; + %> + +
+ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + <% while(iterProfe.hasNext()){ + profesor = iterProfe.next(); + + %> + + + + + + + + + <% } %> + +
NombreApellidoNumero de CedulaCorreoEditarEliminar
<%= profesor.getNombre() %> <%= profesor.getApellido() %> <%= profesor.getNro_cedula() %> <%= profesor.getCorreo() %>
+ > + +
+
+
+ > + +
+
+ +
+ + + \ No newline at end of file diff --git a/src/main/webapp/index.html b/src/main/webapp/index.html index 19639b6..3f45275 100644 --- a/src/main/webapp/index.html +++ b/src/main/webapp/index.html @@ -23,6 +23,7 @@