Commit e9914ca0 by Billy Larru

[FIX RequestFilter corrigiendo redireccion a la misma pagina]

parent d7b6b9f7
......@@ -108,7 +108,7 @@ public class RequestsFilter implements Filter {
deleteCredenciales(response, request);
request.getSession().setAttribute("error", "no tiene una sesion activa");
// request.getRequestDispatcher(request.getContextPath() + "/vistas/error.jsp").forward(request, response);
response.sendRedirect(request.getContextPath() + "/index.jsp");
response.sendRedirect(request.getContextPath() + "/vistas/index.jsp");
}
}
}
......
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