I'm trying to set up a request-scoped bean in Spring.
I've successfully set it up so the bean is created once per request. Now, it needs to access the HttpServletRequest object.
Since the bean is created once per request, I figure the container can easily inject the request object in my bean. How can I do that ?