如何从post请求重定向到jsp

时间:2017-10-23 15:02:14

标签: java jsp redirect servlets

有没有办法从post请求重定向到另一个jsp? 有how-to-redirect之类的问题,但所有答案仅适用于get次请求。 我的代码:

String pathTOjSP = "/JSP/Choose.jsp";
response.sendRedirect(pathTOjSP);

我有两个问题:

1.在客户端的回复中,我得到jsp作为文本 - <html><head>...,并且没有重定向。

2.在jsp中,java属性 - request.setAttribute("name", "test");null

感谢您的帮助。

0 个答案:

没有答案