I am a bit unclear, it seems request.getAttribute (or setAttribute) is for application scope i.e. shared accross all servlets in the application.
Is there something that I can get/set on a per request (not session, but per web request) scope?
Example, in a filter, I may want to add something for this request only that I get then retrieve in my servlet's doGet.