小编典典

我可以在2个Web应用之间的JSP中重定向吗?

jsp

您好,我在同一个工作空间中有2个Web应用程序如何从第一个WebB应用程序中的页面重定向到第二个Web应用程序?

在一个webb应用程序中,我使用:

 RequestDispatcher req =request.getRequestDispatcher("vote.jsp");
req.forward(request, response);

如果会话未打开,我想重定向,所以我不能使用它

<META HTTP-EQUIV="Refresh" CONTENT="0; URL=/test/"/>

我需要像 RequestDispatcher


阅读 339

收藏
2020-06-10

共1个答案

小编典典

我的朋友喜欢这样:

{out.println("Si votre navigateur ne support pas la redirection automatique <a href='http://localhost:8080/HiberBarti/JSP/session/index.jsp'> Click Ic</a>");

String url ="http://localhost:8080/HiberBarti/JSP/session/index.jsp";
//encodeRedirectURL(url);
//sendRedirect(url);
response.sendRedirect(response.encodeRedirectURL(url));
}
2020-06-10