假设在myServlet应用中有一个MyServlet类,在web.xml文件中进行配置如下:servletch5.MyServletservlet/hello
A. http://localhost:8080/MyServlet
B. .http://localhost:8080/servlet
C. http://localhost:8080/hello
D. http://localhost:8080/ch5/MyServlet
查看答案
当访问Servlet时,以下Servlet中哪个方法先被执行
A. destory()
B. doGet()
C. service()
D. init()
Servlet文件在Java Web开发过程中的主要作用是()
A. 开发页面
B. 作为控制器
C. 存储数据
Servlet的service(),在servlet的生命周期中执行的次数( )
A. 仅1次
B. 每一个会话,执行一次
C. 每一个请求,执行一次
D. 0次
当服务器关闭时,servlet调用下面( )方法,销毁servlet。
A. service()
B. init()
C. doPost()
D. destroy()