欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【servlet】 getServletConfig() 与 getServletContext() 的区别

程序员文章站 2022-04-23 16:52:32
...
  • getServletContext() 是获取web.xml中 <context-param> 配置的参数

  • getServletConfig() 是获取web.xml 中 <servlet>中<init-param> 配置的参数

  • ServletConfig对象拥有对ServletContext对象的引用,所以可以通过
    getServletConfig().getServletContext()来获取ServletContext对象

  • ServletContext对象应用于整个web app,而ServletContext只应用于当前Servlet