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
0c3b6259
Commit
0c3b6259
authored
May 17, 2022
by
Emanuel Lugo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
FINAL
parent
e5b2708b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
8 deletions
+24
-8
src/main/java/com/roshka/proyectofinal/login/LoginServlet.java
+12
-6
src/main/webapp/formulario_bootcamp.jsp
+12
-2
No files found.
src/main/java/com/roshka/proyectofinal/login/LoginServlet.java
View file @
0c3b6259
...
...
@@ -71,23 +71,29 @@ public class LoginServlet extends HttpServlet {
String
target
=
(
String
)
session
.
getAttribute
(
"login.target"
);
//response.sendRedirect("loginSuccess.jsp");
//out.println(" \n Destino: " + target);
if
(
target
!=
null
)
response
.
sendRedirect
(
target
);
//return;
if
(
target
!=
null
){
response
.
sendRedirect
(
target
);}
else
{
response
.
sendRedirect
(
"menu.jsp"
);
}
}
catch
(
Exception
ignored
)
{
}
// Si no es posible redireccionar a la pagina solicitada, llevar a la main page
RequestDispatcher
rd
=
request
.
getRequestDispatcher
(
"menu.jsp"
);
rd
.
include
(
request
,
response
);
/* RequestDispatcher rd = request.getRequestDispatcher("menu.html");
rd.forward(request,response);*/
}
else
{
//si no es un user valido - mandar error y redireccionar al inicio de sesion
RequestDispatcher
rd
=
request
.
getRequestDispatcher
(
"/login.jsp"
);
RequestDispatcher
rd
=
request
.
getRequestDispatcher
(
"/login.jsp"
);
//out.print("<div br align = \"center\" class=\"messageError\" > Credenciales incorrectas! Reintente ... </div>");
rd
.
include
(
request
,
response
);
//response.sendRedirect(request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + request.getContextPath() +"/login.jsp");
}
...
...
src/main/webapp/formulario_bootcamp.jsp
View file @
0c3b6259
<
%@
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"
%
>
<
%@
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
contentType=
"text/html;charset=UTF-8"
language=
"java"
%
>
<
%@
taglib
uri =
"http://java.sun.com/jsp/jstl/core"
prefix =
"c"
%
>
<
%@
taglib
prefix=
"c"
uri=
"http://java.sun.com/jsp/jstl/core"
%
>
<
%
HttpSession
session1 =
request.getSession(true);
Object
done =
session1.getAttribute("logon.isDone");
if
(
done =
=
null
)
{
session1
.
setAttribute
("
login
.
target
",
HttpUtils
.
getRequestURL
(
request
).
toString
());
response
.
sendRedirect
(
request
.
getScheme
()
+
"
:
//"
+
request
.
getServerName
()
+
"
:
"
+
request
.
getServerPort
()
+
request
.
getContextPath
()
+"/
login
.
jsp
");
return
;
}%
>
<!DOCTYPE html>
<html>
...
...
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