浏览 2678 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (7) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2009-12-20
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这个接口,所以一直抛出上面的异常。 希望能对遇到这种情况的朋友有所帮助。 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2010-02-20
我向dao中注入一个session scope的bean,会报上面的异常,道理我也明白,可是就是不知道怎么做,我的dao没有实现spring的接口。请问您是怎么做的呢?
|
|
返回顶楼 | |
发表时间:2010-04-10
simplejacky2009 写道 我向dao中注入一个session scope的bean,会报上面的异常,道理我也明白,可是就是不知道怎么做,我的dao没有实现spring的接口。请问您是怎么做的呢?
对不起,我不知道您的dao是什么样子的,是不是扩展什么类? |
|
返回顶楼 | |