A "web application" is a collection of servlets and content installed under a specific subset of the server\'s URL namespace, such as /catalog and possibly installed via a .war file.)
对于在部署描述符中标记为“distributed”的web应用程序,每个虚拟机都有一个上下文实例。在这种情况下,上下文不能用作共享全局信息的位置(因为信息不是真正的全局的)。使用外部资源,比如数据库。
ServletContext对象包含在ServletConfig对象中,这个对象用于Web服务器在初始化servlet时提供给servlet。
ServletContext提供的方法,与我们在web.xml中常进行的一些配置相似。如添加Filter、Listener、Servlet等。