what is context object design pattern ?
|
|
A Context is a collection of data, often stored in a |
|||
|
|
|
A context object encapsulates web server specific HTTP information in more general and portable form. It is used when:
Use a context object to encapsulate state in a protocol-independent way to be shared throughout your application. For more detail see this article |
|||
|
|
|
An example for it might be the HttpSession object: you have attributes which is basically a map with String keys and Object elements. This provides state information between http requests. Another example is the ServletRequest which provides state information between Servlets. |
|||
|
|
|
"Context" comes from "Contextual Information". From Msu.edu:
In most frameworks (and thus the design pattern), a Context Object stores information about an incoming request and corroborating a response. |
|||
|
|
|
See Can you explain the Context design pattern a bit? for a thorough description of the pattern. My post there also explains why it's not an anti-pattern - but the botched implementation of it is. |
|||
|
|
