Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
ProyectoFinal-Bootcamp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jose Baez
ProyectoFinal-Bootcamp
Commits
6a53e4f2
Commit
6a53e4f2
authored
May 12, 2022
by
Yovan Martinez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Conectado el formulario con la base de datos, prueba de carga exitosa,dependecia para postgres
parent
cb95be3a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
18 additions
and
122 deletions
+18
-122
pom.xml
+6
-0
src/main/java/Postulante/PostulanteDao.java
+0
-34
src/main/java/Postulante/SaveServlet.java
+0
-68
src/main/java/com/roshka/proyectofinal/entity/Postulante.java
+2
-1
src/main/webapp/formulario.html
+10
-19
No files found.
pom.xml
View file @
6a53e4f2
...
@@ -36,6 +36,12 @@
...
@@ -36,6 +36,12 @@
<version>
${junit.version}
</version>
<version>
${junit.version}
</version>
<scope>
test
</scope>
<scope>
test
</scope>
</dependency>
</dependency>
<dependency>
<groupId>
org.postgresql
</groupId>
<artifactId>
postgresql
</artifactId>
<version>
42.3.5
</version>
</dependency>
</dependencies>
</dependencies>
<build>
<build>
...
...
src/main/java/Postulante/PostulanteDao.java
deleted
100644 → 0
View file @
cb95be3a
package
Postulante
;
import
com.roshka.proyectofinal.DataBase
;
import
com.roshka.proyectofinal.Postulante
;
import
java.util.*
;
import
java.sql.*
;
public
class
PostulanteDao
{
public
static
int
save
(
Postulante
postulante
){
int
status
=
0
;
try
{
Connection
con
=
DataBase
.
getConnection
();
PreparedStatement
ps
=
con
.
prepareStatement
(
"insert into postulante(nombre,apellido,nro_cedula,correo,telefono,direccion,experiencia_laboral,estudio_universitario,notebook,bootcamp_id,aceptado) values (?,?,?,?,?,?,?,?,?,?,?)"
);
ps
.
setString
(
1
,
postulante
.
getNombre
());
ps
.
setString
(
2
,
postulante
.
getApellido
());
ps
.
setInt
(
3
,
postulante
.
getNro_cedula
());
ps
.
setString
(
4
,
postulante
.
getCorreo
());
ps
.
setString
(
5
,
postulante
.
getTelefono
());
ps
.
setString
(
6
,
postulante
.
getDireccion
());
ps
.
setBoolean
(
7
,
postulante
.
getExpLaboral
());
ps
.
setBoolean
(
8
,
postulante
.
getEstudioUniversitario
());
ps
.
setBoolean
(
9
,
postulante
.
getNotebook
());
ps
.
setInt
(
10
,
postulante
.
getBootcampId
());
ps
.
setBoolean
(
11
,
postulante
.
getAceptado
());
status
=
ps
.
executeUpdate
();
con
.
close
();
}
catch
(
Exception
ex
){
ex
.
printStackTrace
();}
return
status
;
}
}
src/main/java/Postulante/SaveServlet.java
deleted
100644 → 0
View file @
cb95be3a
package
Postulante
;
import
com.roshka.proyectofinal.Postulante
;
import
com.roshka.proyectofinal.entity.Bootcamp
;
import
jakarta.servlet.ServletException
;
import
jakarta.servlet.annotation.WebServlet
;
import
jakarta.servlet.http.HttpServletRequest
;
import
jakarta.servlet.http.HttpServletResponse
;
import
java.io.IOException
;
import
java.io.PrintWriter
;
@WebServlet
(
"../java/Postulante/SaveServlet"
)
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"
);
int
cedula
=
Integer
.
parseInt
(
request
.
getParameter
(
"cedula"
));
String
correo
=
request
.
getParameter
(
"correo"
);
String
telefono
=
request
.
getParameter
(
"telefono"
);
String
direccion
=
request
.
getParameter
(
"direccion"
);
boolean
experienciaProgramando
=
false
;
boolean
experienciaLaboral
=
false
;
boolean
universidad
=
false
;
boolean
notebook
=
false
;
if
(
request
.
getParameter
(
"experiencia_laboral"
)
!=
null
){
experienciaLaboral
=
true
;
}
if
(
request
.
getParameter
(
"experiencia_programando"
)
!=
null
)
{
experienciaProgramando
=
true
;
}
if
(
request
.
getParameter
(
"notebook"
)
!=
null
){
notebook
=
true
;
}
if
(
request
.
getParameter
(
"universidad"
)
!=
null
){
universidad
=
true
;
}
Bootcamp
bootcamp
=
new
Bootcamp
();
Postulante
postulante
=
new
Postulante
();
postulante
.
setNombre
(
nombre
);
postulante
.
setApellido
(
apellido
);
postulante
.
setNro_cedula
(
cedula
);
postulante
.
setCorreo
(
correo
);
postulante
.
setTelefono
(
telefono
);
postulante
.
setDireccion
(
direccion
);
postulante
.
setExpLaboral
(
experienciaLaboral
);
postulante
.
setEstudioUniversitario
(
universidad
);
postulante
.
setNotebook
(
notebook
);
postulante
.
setBootcampId
(
1
);
int
status
=
PostulanteDao
.
save
(
postulante
);
if
(
status
>
0
){
out
.
print
(
"<p>Record saved successfully!</p>"
);
request
.
getRequestDispatcher
(
"index.html"
).
include
(
request
,
response
);
}
else
{
out
.
println
(
"Sorry! unable to save record"
);
}
out
.
close
();
}
}
src/main/java/entity/Postulante.java
→
src/main/java/
com/roshka/proyectofinal/
entity/Postulante.java
View file @
6a53e4f2
package
com
.
roshka
.
proyectofinal
;
package
com
.
roshka
.
proyectofinal
.
entity
;
//Creacion del objeto Postulante
//Creacion del objeto Postulante
public
class
Postulante
{
public
class
Postulante
{
...
...
src/main/webapp/formulario.html
View file @
6a53e4f2
...
@@ -16,47 +16,38 @@
...
@@ -16,47 +16,38 @@
<div>
<div>
<p>
Si sigues interesado y cumples con los requisitos, completa el siguiente formulario:
</p>
<p>
Si sigues interesado y cumples con los requisitos, completa el siguiente formulario:
</p>
<form
method=
"post"
action=
"
../java/Postulante/SaveServlet.java
"
>
<form
method=
"post"
action=
"
SaveServlet
"
>
<label
for=
"nombre"
>
Ingrese su Nombre:
</label>
<label
for=
"nombre"
>
Ingrese su Nombre:
</label>
<input
required
id=
"nombre"
type=
"text"
><br>
<input
required
id=
"nombre"
name=
"nombre"
type=
"text"
><br>
<label
for=
"apellido"
>
Ingrese su Apellido:
</label>
<label
for=
"apellido"
>
Ingrese su Apellido:
</label>
<input
required
id=
"apellido"
type=
"text"
><br>
<input
required
id=
"apellido"
name=
"apellido"
type=
"text"
><br>
<label
for=
"cedula"
>
Numero de cedula:
</label>
<label
for=
"cedula"
>
Numero de cedula:
</label>
<input
required
id=
"cedula"
type=
"number"
><br>
<input
required
id=
"cedula"
name=
"cedula"
type=
"number"
><br>
<label
for=
"correo"
>
Correo:
</label>
<label
for=
"correo"
>
Correo:
</label>
<input
required
id=
"correo"
type=
"email"
><br>
<input
required
id=
"correo"
name=
"correo"
type=
"email"
><br>
<label
for=
"telefono"
>
Telefono:
</label>
<label
for=
"telefono"
>
Telefono:
</label>
<input
required
id=
"telefono"
type=
"text"
><br>
<input
required
id=
"telefono"
name=
"telefono"
type=
"text"
><br>
<label
for=
"direccion"
>
Direccion:
</label>
<label
for=
"direccion"
>
Direccion:
</label>
<input
required
id=
"direccion"
type=
"text"
><br>
<input
required
id=
"direccion"
name=
"direccion"
type=
"text"
><br>
<label
for=
"experiencia_laboral"
>
Experiencia laboral
</label>
<label
for=
"experiencia_laboral"
>
Experiencia laboral
</label>
<!-- Si no lo marca el valor que envia es null y si lo marca es "ON" -->
<!-- Si no lo marca el valor que envia es null y si lo marca es "ON" -->
<input
id=
"experiencia_laboral"
type=
"checkbox"
><br>
<input
id=
"experiencia_laboral"
name=
"experiencia_laboral"
type=
"checkbox"
><br>
<label
for=
"experiencia_programando"
>
Que lenguajes de programacion conoces:
</label>
<label
for=
"experiencia_programando"
>
Que lenguajes de programacion conoces:
</label>
<input
id=
"experiencia_programando"
type=
"checkbox"
><br>
<input
id=
"experiencia_programando"
type=
"checkbox"
><br>
<label
for=
"notebook"
>
Cuenta con notebook:
</label>
<label
for=
"notebook"
>
Cuenta con notebook:
</label>
<input
id=
"notebook"
type=
"checkbox"
><br>
<input
id=
"notebook"
name=
"notebook"
type=
"checkbox"
><br>
<label
for=
"universidad"
>
Estudio Universitario:
</label>
<label
for=
"universidad"
>
Estudio Universitario:
</label>
<input
id=
"universidad"
type=
"checkbox"
><br>
<input
id=
"universidad"
name=
"universidad"
type=
"checkbox"
><br>
<input
type=
"submit"
>
<input
type=
"submit"
>
<input
type=
"reset"
value=
"Borrar"
>
<input
type=
"reset"
value=
"Borrar"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment