共计 475 个字符,预计需要花费 2 分钟才能阅读完成。
一、概述
ServletConfig 对象对应 web.xml 文件中的
ServletConfig 对象是由服务器创建的,然后传递给 Servlet 的 init()方法,你可以在 init()方法中使用它!
二、ServletConfig 对象的原理图
三、ServletConfig 对象 API 演示
String getServletName():获取 Servlet 在 web.xml 文件中的配置名称,
即
ServletContext getServletContext():用来获取 ServletContext 对象,ServletContext 会在后面讲解;
String getInitParameter(String name):用来获取在 web.xml 中配置的初始化参数,通过参数名来获取参数值;
Enumeration getInitParameterNames():用来获取在 web.xml 中配置的所有初始化参数名称;
正文完
星哥玩云-微信公众号