我使用以下语法将 login.jsp 重定向到 index.jsp:
response.sendRedirect("index.jsp");
当我在 localhost:8080 上访问时,在服务器上测试它工作正常的应用程序。当我从另一台 PC 远程浏览时,我需要重定向的服务器地址(如 xxx.xxx.xxx.xxx:8080)将我发送到 localhost:8080/index.jsp 本地计算机上当然不存在. 如果我写类似
response.sendRedirect("xxx.xxx.xxx.xxx:8080/index.jsp");
然后浏览器会丢失我不想要的会话变量。如何解决这个问题?