您的位置:首页 > 编程语言 > Java开发

Interface ServletContext

2014-09-28 23:55 288 查看

javax.servlet

Interface ServletContext

public interface ServletContextDefines a set of methods that a servlet uses to communicate with its servlet container, for example, to get the MIME type of a file, dispatch requests, or write to a log file.

There is one context per "web application" per Java Virtual Machine. (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.)

In the case of a web application marked "distributed" in its deployment descriptor, there will be one context instance for each virtual machine. In this situation, the context cannot be used as a location to share global information
(because the information won't be truly global). Use an external resource like a database instead.

The
ServletContext
object is contained within the
ServletConfig
object, which the Web server provides the servlet when the servlet is initialized. 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  javax.servlet Inter
相关文章推荐