我有一个A类,我想成为另外两个类中的请求范围bean。 在一个类中,我将一些数据写入实例,而在另一个类中,我尝试读取数据,但它不会引用写入数据的同一实例,即使它在同一个请求中也是如此。
我的配置是这样的:
<bean name="blah" class="class.that.WritesToA">
<property name="A" ref="A"/>
</bean>
<bean name="whatever" class="class.that.ReadsFromA">
<property name="A" ref="A"/>
</bean>
<bean id="A" class="com.audit.Service" scope="request">
<aop:scoped-proxy />
</bean>
我错过了什么吗?