文章目录
一、getRequestDispatcher理解
request.getRequestDispatcher()是请求转发,前后页面共享一个request ; 这个是在服务端运行的,对浏览器来说是透明的。
response.sendRedirect()是重新定向,前后页面不是一个request。而这个是在浏览器端运行的。
二、RequestDispatcher.forward()方法与HttpServletResponse.sendRedirect()方法的区别
RequestDispatcher.forward()方法仅是容器中控制权的转向,在客户端浏览器地址栏中不会显示出转向后的地址。
HttpServletResponse.sendRedirect()方法则是完全的跳转,浏览器将会得到跳转的地址,并重新发送请求链接。
三、实现步骤
1.编写index.jsp登录页面
<%@ page contentType="text/html;charset=UTF-8" language="java"%><html><head><title>登录</title></head><body><h1>登录</h1><div style="text-align: center"><form action="${pageContext.request.contextPath}/login" method="get">
用户名:<input type="text" name="username"><br>
密码:<input type="password" name="password"><br>
爱好:
<input type="checkbox" name="hobby" value="女孩"> 女孩
<input type="checkbox" name="hobby" value="代码"> 代码
<input type="checkbox" name="hobby" value="唱歌"> 唱歌
<input type="checkbox" name="hobby" value="电影"> 电影
<br><input type="submit"></form></div></body></html>
2.编写跳转页面success.jsp页面
<%@ page contentType="text/html;charset=UTF-8" language="java"%><html><head><title>Title</title></head><body><h1>登录成功!</h1></body></html>
3.编写LoginServlet.java类
packagecom.xxx.request;importjavax.servlet.ServletException;importjavax.servlet.http.HttpServlet;importjavax.servlet.http.HttpServletRequest;importjavax.servlet.http.HttpServletResponse;importjava.io.IOException;importjava.util.Arrays;publicclassLoginServletextendsHttpServlet{@OverrideprotectedvoiddoGet(HttpServletRequest req,HttpServletResponse resp)throwsServletException,IOException{
req.setCharacterEncoding("utf-8");
resp.setCharacterEncoding("utf-8");String username=req.getParameter("username");String password=req.getParameter("password");String[] hobby=req.getParameterValues("hobby");System.out.println("======================================");System.out.println(username);System.out.println(password);System.out.println(Arrays.toString(hobby));
req.getRequestDispatcher("/success.jsp").forward(req,resp);}@OverrideprotectedvoiddoPost(HttpServletRequest req,HttpServletResponse resp)throwsServletException,IOException{}}
四、运行示例
版权归原作者 懒猫Q 所有, 如有侵权,请联系我们删除。