我们可以在Spring的bean中轻松的注入HttpServletRequest,使用@Autowired HttpServletRequest request;就可以了。
但是,为什么我们可以直接这样用呢?
原因肯定是Spring在容器初始化的时候就将HttpServletRequest注册到了容器中。
那么我们就查原码,发现在WebApplicationContextUtils.registerWebApplicationScopes(ConfigurableListableBeanFactory, ServletContext)中实现了这个功能。
这个方法是在AbstractApplicationContext.refresh()中进行调用的,也就是在Spring容器初始化的时候,将web相关的对象注册到了容器中。
具体可以看下面的原码图片:
调用处:
附:
1. Spring能实现在多线程环境下,将各个线程的request进行隔离,且准确无误的进行注入,奥秘就是ThreadLocal
2. Spring中还可以直接注入ApplicationContext