8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76fcc17 commit c620628Copy full SHA for c620628
docs/java/J2EE基础知识.md
@@ -93,7 +93,7 @@ Form标签里的method的属性为get时调用doGet(),为post时调用doPost()
93
94
**转发是服务器行为,重定向是客户端行为。**
95
96
-**转发(Forword)**
+**转发(Forward)**
97
通过RequestDispatcher对象的forward(HttpServletRequest request,HttpServletResponse response)方法实现的。RequestDispatcher可以通过HttpServletRequest 的getRequestDispatcher()方法获得。例如下面的代码就是跳转到login_success.jsp页面。
98
```java
99
request.getRequestDispatcher("login_success.jsp").forward(request, response);
0 commit comments