I am writing Spring 3.1.0 MVC based application. The problem is: i want to put some objects in a singleton object (current HttpServletRequest
and HttpSevletResponse
) to use them in other objects(Spring Controllers). But couldn't do so. I tried to extend DispatcherServlet
, overriding both doService
and doDispatch
. Also tried to implement own HandlerInterceptor
. No result.
Where can I initialize my singleton objects? And where is Spring Frameworks's entry point and destroy point (i.e. like init()
and destroy()
methods or lifecycle)?