jsP内置对象————config

来源:http://www.xin126.cn/show.asp?id=1690

config

config表示一个javax.servlet.ServletConfig对象。
config
对象是在一个Servlet初始化时,JSP引擎向它传递信息用的,此信息包括Servlet初始化时所要用到的参数(通过属性名和属性值构成)以及服务器的有关信息(通过传递一个ServletContext对象)

01

String getServletName()

返回Servlet的名字

02

ServletContext getServletContext()

返回含有服务器相关信息的ServletContext对象

03

String getInitParameter(String name)

返回初始化参数的值

04

Enumeration getInitParameterNames()

返回Servlet初始化所需所有参数的枚举


你可能感兴趣的:(jsP内置对象————config)