Servlet生命周期就是指创建Servlet实例后,存在的时间以及何时销毁的整个过程.
--Servlet生命周期有三个方法
init()方法:
service()方法:Dispatches client requests to theprotected service
method
destroy()方法:Called by the servlet container toindicate to a servlet that the servlet is being taken out ofservice.
--Servlet生命周期的各个阶段
----实例化:Servlet容器创建Servlet实例
----初始化:调用init()方法
----服务:如果有请求,调用service()方法
----销毁:销毁实例前调用destroy()方法
----垃圾收集:销毁实例
Servlet生命周期
最新推荐文章于 2024-03-12 16:39:44 发布