10

是否可以将请求范围的 bean 自动装配到应用程序范围的 bean 中。IE

我有一个类 RequestScopedBean:

class RequestScopedBean {
   ....
   ....
   ....
}

和一个类应用程序范围的 bean,其中请求范围的 bean 是自动装配的。

class ApplicationScopedBean {
   @Autowire
   private RequestScopedBean requestScopedBean;
   ....
   ....
   ....
}

spring-config xml如下:

<?xml version="1.0" encoding="UTF-8"?>
<beans
    xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:util="http://www.springframework.org/schema/util"
    xsi:schemaLocation="
              http://www.springframework.org/schema/beans  http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/util  http://www.springframework.org/schema/util/spring-util-3.0.xsd
">
<bean id="applicationScopedBeans" class="ApplicationScopedBean" />
<bean id="requestScopedBean" class="RequestScopedBean" scope="request">  
</bean>
</beans>

当我尝试运行此应用程序时,applicationScopedBean 的 bean 创建失败并出现以下错误:

Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'ApplicationScopedBean': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not       autowire field: private RequestScopedBean requestScopedBean; nested exception is java.lang.IllegalStateException: No Scope registered for scope 'request'
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:288)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1074)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:517)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:456)
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:312)
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:192)
    at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1075)
    at com.amazon.coral.reflect.instantiate.SpringInstantiatorFactory$1.newInstance(SpringInstantiatorFactory.java:168)
    ... 19 more
4

3 回答 3

15

您还必须将您的标记requestScopedBean为范围代理,这样 Spring 将为 requestScopedBean 注入代理并在后台适当地管理范围。

<bean id="requestScopedBean" class="RequestScopedBean" scope="request">  
    <aop:scoped-proxy/>
</bean>

更多在这里

于 2012-11-25T22:14:04.660 回答
8

上面的异常表明您没有正确配置 Spring 以提供请求范围的 bean。

您需要按照此处文档中的说明将其添加到您的 web.xml 中:

<listener>
    <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
  </listener>

但是,您的问题不仅仅是配置。您正在尝试将请求范围的 bean 注入单例范围的 bean。Spring 在 DI 容器启动时解决依赖关系并实例化单例。这意味着 ApplicationScopedBean 只会被创建一次(此时不会有任何请求在运行,因此自动装配很可能会失败)。

如果您使用的是原型作用域 bean 而不是请求作用域,则必须考虑一种方法,每次使用时为单例作用域 bean 提供一个新实例。Spring 文档的方法注入章节中描述了这种方法。

于 2012-11-25T22:10:58.127 回答
0

@Airwavezx 等价的注解如下:

@Scope( value = SCOPE_REQUEST, proxyMode = ScopedProxyMode.TARGET_CLASS )
于 2020-09-15T13:07:02.250 回答