I need develop some controllers as below to reflect parent/child relationship. But I don't know if there is any way letting me to have a reference to collection of child controllers from parent controller. After having this reference I can loop through all concrete controllers. Is this a right way to design? What abstract controller should I use? Thanks
Code:<bean id="abstractController" class="mycom.MyAbastractController" abstract="true"> <!--other property etc--> </bean> <bean id="concreteController1" parent="abstractController"> <!--other property etc--> </bean> <bean id="concreteController2" parent="abstractController"> <!--other property etc--> </bean>


Reply With Quote