Hi!

We have an object (a topicmap object) that is created in the beginning of the request (we create it in an interceptor) and it should live until the end of the request. It should be possible to access this object from handleRequest.

Is using request.setAttribute in the interceptor a good way of doing this and the access this object with request.getAttribute in handleRequest? Or is this a misuse of the request.setAttribute method? Any better ways of doing this?

TIA!


-Kaj