Commit 61a6cd06 by Jose Baez

Merge branch 'filtrosbootcamp' into 'develop'

Filtrosbootcamp

See merge request !45
parents cbb8ab95 7eec9834
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
</list> </list>
</option> </option>
</component> </component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="17" project-jdk-type="JavaSDK"> <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" /> <output url="file://$PROJECT_DIR$/out" />
</component> </component>
</project> </project>
\ No newline at end of file
...@@ -11,7 +11,7 @@ public class DataBase { ...@@ -11,7 +11,7 @@ public class DataBase {
Class.forName("org.postgresql.Driver"); Class.forName("org.postgresql.Driver");
con= DriverManager con= DriverManager
.getConnection("jdbc:postgresql://localhost:5432/bootcamp_th", .getConnection("jdbc:postgresql://localhost:5432/bootcamp_th",
"postgres", "2022roshka"); "postgres", "postgres");
if(con != null){ if(con != null){
System.out.println("---> CONNECTED TO SERVER"); System.out.println("---> CONNECTED TO SERVER");
......
...@@ -120,6 +120,7 @@ public class BootcampDao { ...@@ -120,6 +120,7 @@ public class BootcampDao {
PreparedStatement ps=con.prepareStatement("select * from bootcamp where id=?"); PreparedStatement ps=con.prepareStatement("select * from bootcamp where id=?");
ps.setInt(1,id); ps.setInt(1,id);
ResultSet rs=ps.executeQuery(); ResultSet rs=ps.executeQuery();
System.out.println();
if(rs.next()){ if(rs.next()){
b.setId(rs.getInt("id")); b.setId(rs.getInt("id"));
b.setActivo(rs.getBoolean("activo")); b.setActivo(rs.getBoolean("activo"));
...@@ -136,4 +137,55 @@ public class BootcampDao { ...@@ -136,4 +137,55 @@ public class BootcampDao {
return b; return b;
} }
public static List<Bootcamp> filtrar(String lenguaje){
ArrayList<Bootcamp> list = new ArrayList<>();
// String sql = "select a.id, a.titulo, a.descripcion, a.fecha_inicio, a.fecha_fin, b.nombre_lenguaje, c.nombre,c.apellido, a.activo\n" +
// "\tfrom bootcamp a\n" +
// "\tinner join lenguaje b on b.id=a.id_lenguaje\n" +
// "\tinner join profesor c on c.id=a.id_profesor\n" +
// "\twhere a.fecha_inicio ilike ? and\n" +
// "\ta.fecha_fin ilike ? and b.nombre_lenguaje ilike ?";
try{
Connection con= DataBase.getConnection();
//PreparedStatement ps=con.prepareStatement("");
// PreparedStatement ps = con.prepareStatement("select a.id, a.titulo, a.descripcion, cast (a.fecha_inicio AS varchar) as fecha_inicio, cast (a.fecha_fin AS varchar) as fecha_fin, b.nombre_lenguaje, c.nombre,c.apellido, a.activo\n" +
// "\tfrom bootcamp a\n" +
// "\tinner join lenguaje b on b.id=a.id_lenguaje\n" +
// "\tinner join profesor c on c.id=a.id_profesor\n" +
// "\twhere a.fecha_inicio = ? and\n" +
// "\ta.fecha_fin = ? and b.nombre_lenguaje = ?");
PreparedStatement ps = con.prepareStatement("select a.id, a.titulo, a.descripcion, cast (a.fecha_inicio AS varchar) as fecha_inicio, cast (a.fecha_fin AS varchar) as fecha_fin, b.nombre_lenguaje, c.nombre,c.apellido, a.activo\n" +
"\tfrom bootcamp a\n" +
"\tinner join lenguaje b on b.id=a.id_lenguaje\n" +
"\tinner join profesor c on c.id=a.id_profesor\n" +
" where b.nombre_lenguaje = ?");
// ps.setString(1, fecha_inicio);
// ps.setString(2, fecha_fin);
ps.setString(1, lenguaje);
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;
}
} }
...@@ -12,6 +12,7 @@ public class DeleteServlet extends HttpServlet { ...@@ -12,6 +12,7 @@ public class DeleteServlet extends HttpServlet {
protected void doGet(HttpServletRequest request, HttpServletResponse response) protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException { throws ServletException, IOException {
String sid=request.getParameter("id"); String sid=request.getParameter("id");
int id=Integer.parseInt(sid); int id=Integer.parseInt(sid);
System.out.println("Este es el id " + id); System.out.println("Este es el id " + id);
BootcampDao.delete(id); BootcampDao.delete(id);
......
...@@ -27,6 +27,7 @@ public class EditServlet extends HttpServlet { ...@@ -27,6 +27,7 @@ public class EditServlet extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response) protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException { throws ServletException, IOException {
int id_lenguaje= Integer.parseInt(request.getParameter("id_lenguaje2")); int id_lenguaje= Integer.parseInt(request.getParameter("id_lenguaje2"));
int id_profesor= Integer.parseInt(request.getParameter("id_profesor2")); int id_profesor= Integer.parseInt(request.getParameter("id_profesor2"));
String fecha_inicio=request.getParameter("fecha_inicio2"); String fecha_inicio=request.getParameter("fecha_inicio2");
......
...@@ -25,15 +25,12 @@ public class Filtros extends HttpServlet { ...@@ -25,15 +25,12 @@ public class Filtros extends HttpServlet {
System.out.println(apellido); System.out.println(apellido);
if(nombre!=null || apellido!=null){ if(nombre!=null || apellido!=null){
profesores = buscarPorNombre(nombre, apellido); profesores = buscarPorNombre(nombre, apellido);
} }
req.getServletContext().setAttribute("profesores", profesores); req.getServletContext().setAttribute("profesores", profesores);
RequestDispatcher reqDisp= req.getRequestDispatcher("profesor-consulta.jsp"); RequestDispatcher reqDisp= req.getRequestDispatcher("profesor-consulta.jsp");
reqDisp.forward(req,resp); reqDisp.forward(req,resp);
} }
@Override @Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
List<Profesor > nombre = listarProfesor(); List<Profesor > nombre = listarProfesor();
......
...@@ -540,7 +540,7 @@ pageEncoding="UTF-8"%> ...@@ -540,7 +540,7 @@ pageEncoding="UTF-8"%>
<%=rs.getString("fecha_fin")%> <%=rs.getString("fecha_fin")%>
</p> </p>
<form action="formulario.jsp"> <form action="formulario.jsp">
<input name="bootcamp" type="hidden" value=<%=rs.getInt( "id") %>> <input name="bootcamp" type="hidden" value=<%=rs.getInt("id") %>>
<button type="submit">POSTULAR</button> <button type="submit">POSTULAR</button>
</form> </form>
</div> </div>
......
<%@ 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, java.util.ArrayList, jakarta.servlet.http.* , java.lang.Object" %> <%@ 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, java.util.ArrayList, jakarta.servlet.http.* , java.lang.Object,jakarta.servlet.http.HttpServlet,jakarta.servlet.http.HttpServletRequest,java.sql.ResultSet" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %> <%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
...@@ -82,17 +82,46 @@ ...@@ -82,17 +82,46 @@
<button type="submit"> <button type="submit">
Crear Bootcamp Crear Bootcamp
</button> </button>
</form> </form>
<%@page import="jakarta.servlet.http.HttpServlet,jakarta.servlet.http.HttpServletRequest,com.roshka.proyectofinal.bootcamp.BootcampDao"%>
<%
int nahuel = 0;
if(request.getParameter("filtraryovan")!=null){
if(request.getParameter("lenguaje") != null){
nahuel=1;
}
}
BootcampDao bootDao = new BootcampDao();
List<Bootcamp> listBoot;
listBoot = bootDao.listar();
String lenguaje = request.getParameter("lenguaje");
//String inicio = request.getParameter("fecha_inicio");
//String fin = request.getParameter("fecha_fin");
switch(nahuel){
case 1:
lenguaje = request.getParameter("lenguaje");
//inicio = request.getParameter("fecha_inicio");
//fin = request.getParameter("fecha_fin");
listBoot = bootDao.filtrar(lenguaje);
break;
case 0:
listBoot = bootDao.listar();
break;
}
Iterator<Bootcamp> iterBoot = listBoot.iterator();
Bootcamp boot = null;
%>
<form method="get" action ="#" >
<input name="lenguaje" type="search" placeholder="Buscar por lenguaje"></input>
<input type="submit" name="filtraryovan" value= "Filtrar"></input>
</form>
</div> </div>
<p><%=nahuel%> <%=lenguaje%> </p>
<div> <div>
<%
BootcampDao bootDao = new BootcampDao();
List<Bootcamp> listBoot = bootDao.listar();
Iterator<Bootcamp> iterBoot = listBoot.iterator();
Bootcamp boot = null;
%>
<table> <table>
<thead> <thead>
<tr> <tr>
...@@ -134,6 +163,10 @@ ...@@ -134,6 +163,10 @@
</tbody> </tbody>
</table> </table>
</form> </form>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment