1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-16 18:10:13 +08:00

Update J2EE基础知识.md

This commit is contained in:
Liu Guangming 2019-05-10 11:50:48 +08:00
parent 76fcc17345
commit c6206288a6

View File

@ -93,7 +93,7 @@ Form标签里的method的属性为get时调用doGet()为post时调用doPost()
**转发是服务器行为,重定向是客户端行为。**
**转发Forword**
**转发Forward**
通过RequestDispatcher对象的forwardHttpServletRequest request,HttpServletResponse response方法实现的。RequestDispatcher可以通过HttpServletRequest 的getRequestDispatcher()方法获得。例如下面的代码就是跳转到login_success.jsp页面。
```java
request.getRequestDispatcher("login_success.jsp").forward(request, response);