此题为判断题(对,错)。
第1题:
在Servlet的生命周期方法中,每当传递请求或响应时,web容器会调用()
A.init()
B.service()
C.doFilter()
D.destroy()
第2题:
在Servlet生命周期中,对应服务阶段的方法是()。
A.init()
B.doPost()
C.destroy()
D.service()
第3题:
Servlet对象的生命周期主要由三个过程组成:初始化Servlet对象用init()方法,service方法响应请求,Servlet对象死亡用close()方法。
第4题:
属于Servlet生命周期的方法有()。
A.init()
B.service()
C.destroy()
D.super()
第5题:
Servlet的生命周期中有三个类型的事件,这三个事件分别对应由Servlet引擎所唤醒的三个方法()。
A.init(),service(),destroy()
B.init(),doPost(),destroy()
C.init(),servlet(),destroy()
D.init(),doGet(),destroy()