what is context object design pattern?

后端 未结 5 1286
栀梦
栀梦 2020-12-02 10:10

what is context object design pattern ?

5条回答
  •  暖寄归人
    2020-12-02 11:07

    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.

提交回复
热议问题