2019-04-30_ServletContext_

8.30-12.00:ServletContext的context-param标签;ServletConfig对象;Tomcat下的Web.xml;Service.xml



笔记:

    1.标签可以存储一对键值对数据,多组需要声明多个。

    2.使用方法,在web.xml中

       

            name

            zhangsan

        

在使用中。ServletContext.getInitParameter(String name);得到name对用的value;

ServletContext.getInitParameterNames();得到返回的键名的枚举。

        3.ServletConfig与Servlet一一对应。

你可能感兴趣的:(2019-04-30_ServletContext_)