I am using JdbcBeanDefinitionReader and I don't see a place in there to handle a list. Is there another way to do the following below without using the <list> element?
<bean id="timerFactory" class="org.springframework.scheduling.timer.TimerF actoryBean">
<property name="scheduledTimerTasks">
<list>
<ref bean="scheduledTask" />
</list>
</property>
</bean>


Reply With Quote