(servlet)在 web.xml 中下面哪一个标签表示 servlet 的 URL 的映射
A. mapping
B. url_mapping
C. servlet-mapping
D. servlet-url
查看答案
(servlet)下列那个方法在 ServletContext 被初始化时调用
A. ServletContextListener 接口的 contextInitialized() 方法
B. ServletContextListener 接口的 contextCreated()方法
C. ServletContextListener 接口的 Init() 方法
D. ServletContextListener 接口的 initialized() 方法
(servlet)下列对HttpServlet类描述错误的是
A. HttpServlet类是针对使用Http协议的Web服务器的Servlet类
B. HttpServlet类通过执行Servlet接口,能够提供Http协议的功能
C. HttpServlet的子类实现了doGet()方法去响应HTTP的Get请求
D. HttpServlet类通过init()方法和destory()方法管理Servlet自身的资源
(servlet)下列对于web.xml的配置说法错误的是
A. 在web.xml描述中,首先要声明Servlet
B. 在web.xml描述中,要指定这个Servlet的名字
C. 在web.xml描述中,要指定这个Servlet的类
D. 在web.xml中不可同时指定多个Servlet
(servlet)Servlet通过什么接口可以实现请求转发机制
A. HttpServletRequest接口
B. RequestDispatcher接口
C. HttpServletResponse接口
D. ServletConfig接口