码迷,mamicode.com
首页 > 其他好文 > 详细

Servlet生命周期

时间:2017-10-02 11:54:09      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:post   src   code   容器   处理   客户端   res   span   alt   

 1 //servlet生命周期
 2 /* 
 3   init();初始化
 4   service();处理客户端请求
 5   destroy();终止(销毁)
 6 */
 7 
 8 //init()方法
 9 public void init() throws ServletException{
10     //初始化代码...
11 }
12 
13 
14 //service()方法
15 public void service(ServletRequest request,ServletResponse response) throws ServletException,IOException{
16 
17 }
18 /*
19   service() 方法由容器调用,service 方法在适当的时候调用 doGet、doPost、doPut、doDelete 等方法;
20   不用对service() 方法做任何动作,只需要根据来自客户端的请求类型来重写 doGet() 或 doPost() 即可.
21 */
22 
23     //doGet()方法
24     public void doGet(ServletRequest request,ServletResponse response) throws ServletException,IOException{
25         //servlet代码
26     }
27     //doPost()方法
28     public void doPost(ServletRequest request,ServletResponse response) throws ServletException,IOException{
29         //servlet代码
30     }
31 
32 
33 //destroy()方法
34 public void destroy(){
35     //终止化代码
36 }

技术分享

Servlet生命周期

标签:post   src   code   容器   处理   客户端   res   span   alt   

原文地址:http://www.cnblogs.com/yanxi1900/p/7619822.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!