-
Feb 5th, 2013, 07:33 AM
#1
How to use spring context beans containg some injected dependencies in spring webflow
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?
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules