第一部分
第一个对象:ServletConfig 存放静态数据不能共享.
第二个对象:ServletContext 获取共享静态数据,获取共享动态数据,获取共享文件数据.
第三个对象 :response对象将数据发送给浏览器 .
第四个对象:request 将浏览器的数据信息返回到服务器.
第五个对象: Cookie对象。对象@6 session对象。第六个对象Filter过滤器。
重定向 response.sendRedirect("跳转的页面");
服务器的跳转:request.getRequestDispatcher("Servlet4")
.forward(request, response);
第二部分
第三个部分
三个案例讲述上面的七大对象。
请看案例一
案例二LISTER对象:
案例三cookandsession
三个案例讲述上面的七大对象。
请看案例一。
要实现的效果如下:
案例二LISTER对象:
案例三cookandsession
代码我就不写了。如果你之前看过我写的代码。像上面的案例,只需动下脑子,就可以写出来了。
Servlec第三课https://blog.csdn.net/qq_56248592/article/details/120675288
https://blog.csdn.net/qq_56248592/article/details/120675288
Servlect第四课https://blog.csdn.net/qq_56248592/article/details/120709950
https://blog.csdn.net/qq_56248592/article/details/120709950
Servlect第六课https://blog.csdn.net/qq_56248592/article/details/120772451
https://blog.csdn.net/qq_56248592/article/details/120772451
Servlect第八课https://blog.csdn.net/qq_56248592/article/details/120856474
https://blog.csdn.net/qq_56248592/article/details/120856474
Servlect第九课https://blog.csdn.net/qq_56248592/article/details/121004070
https://blog.csdn.net/qq_56248592/article/details/121004070
Servlect第十课https://blog.csdn.net/qq_56248592/article/details/121103016
https://blog.csdn.net/qq_56248592/article/details/121103016
上面是对象常用的方法与方式。
MVC三层架构https://blog.csdn.net/qq_56248592/article/details/121774168
https://blog.csdn.net/qq_56248592/article/details/121774168
当我将jsp复习后。可以尝试的在jsp的基础上写不同的架构。