I want to know how do we manage the scope of the bean mentioned in aplicationContext.xml.
I have a bean defined this way.
<bean id="employeeHandle" class="EmployeeHandler">
<property name="employeeDao"><ref bean="employeeDao"/></property>
</bean>
How to make scope to session?


Reply With Quote