这个问题花费了我几个小时,我已经在web.xml中添加了RequestContextListener监听器,而且在配置'KnowledgeService'这个bean中也使用scope为'request',但是不抛出异常。而在配置'UserService'这个bean时硬是抛出了下面这个异常:
Error creating bean with name 'UserService': Scope 'request' is not active for the current thread; consider defining a scoped proxy for this bean if you intend to refer to it from a singleton;
幸好,经过一翻苦战,终于明白其中的道理...
Scope 'request' is not active for the current thread这句话中说明在某个线程上试图调用scope为request的bean,但是这个bean中能被在http请求线程中实例化,简单地说就是:在客户请求的时候才可以被实例化。而我的问题是在服务器启动的时候要实例化,所以有"Scope 'request' is not active for the current thread"这一句的出现。在项目中如果有些bean实现了spring中的某些接口(如:SessionAware,RequestAware或BeanPostProcessor等等),就会在服务器启动的时候自动创建代理(proxy),这时如果该bean的scope为request、session...这些web作用域的时候就会出现consider defining a scoped proxy for this bean if you intend to refer to it from a singleton这句话。我的'UserService'这个bean就是间接实现了BeanPostProcessor这个接口,所以一直抛出上面的异常。
希望能对遇到这种情况的朋友有所帮助。
分享到:
相关推荐
Mapping Error Pages outside of Spring MVC 27.1.12. Spring HATEOAS 27.1.13. CORS Support 27.2. The “Spring WebFlux Framework” 27.2.1. Spring WebFlux Auto-configuration 27.2.2. ...
Aliasing a bean outside the bean definition ................................................ 28 Instantiating beans .......................................................................................
**表格17**: WEB-INF/dwr.xml配置文件中关于springbean的调用(必需设置) ```xml ``` ### 整合中常见的问题及解决方法 #### 使用Myeclipse整合时在工程中加入各框架的顺序 **步骤1**: 添加Spring框架的...
Aliasing a bean outside the bean definition ................................................ 28 Instantiating beans .......................................................................................
“scope参数允许你配置creator的生命周期,共有以下几个选项:application,session,request,page.这些参数对于用过jsp或servlet的开发人员并不陌生. 3.1 Uing static methods 如果你想远程调用一个creator的静态方法,...
此拦截器用于外部引用,可以实现Action之间的引用,类似于Spring中的bean引用。 ##### 2.10 FileUpload 该拦截器用于处理文件上传功能。如果请求包含文件数据,则必须配置此拦截器,否则无法正常解析文件数据。 ##...
- **简介**:此拦截器用于自动装配Struts2与Spring集成时所需的Bean。当Struts2与Spring框架集成时,可以通过该拦截器实现依赖注入,从而避免手动配置依赖关系。 2. **Chain (链式调用)** - **功能**:支持在一...