I've some beans declared in spring context. These beans have some injected dependency beans.
For exp

<bean id="beanA" class="com.test.TestA"
scope="request">
<property name="testB" ref="beanB" />
</bean>

<bean id="beanB" class="com.test.TestA"
scope="request">
<property name="testC" ref="beanC" />
</bean>


I want to use beanA with all it's injected dependencies in Spring Web flow in conversation scope.
How will I declare this bean in spring webflow?