您好,我在同一个工作空间中有2个Web应用程序如何从第一个WebB应用程序中的页面重定向到第二个Web应用程序?
在一个webb应用程序中,我使用:
RequestDispatcher req =request.getRequestDispatcher("vote.jsp"); req.forward(request, response);
如果会话未打开,我想重定向,所以我不能使用它
<META HTTP-EQUIV="Refresh" CONTENT="0; URL=/test/"/>
我需要像 RequestDispatcher
RequestDispatcher
我的朋友喜欢这样:
{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)); }