我正在使用Quartz来安排与Spring集成的作业。为了保留石英数据,我在spring配置中提供了一个数据源。
<bean id="mySchedulerBean" name="mySchedulerBean"
class="org.springframework.scheduling.quartz.SchedulerFactoryBean"
lazy-init="false" destroy-method="destroy">
<property name="applicationContextSchedulerContextKey">
<value>applicationContext</value>
</property>
<property name="triggers">
<list>
<ref bean="myExecutorJobTrigger" />
</list>
</property>
<property name="dataSource" ref="dataSource" />
<property name="transactionManager" ref="transactionManager" />
<property name="jobFactory">
<bean
class="mypackage.AutowiringSpringBeanJobFactory" />
</property>
..........................
..........................
..............................
以上内容将数据保存在datasource中配置的一个模式中。我需要做的是将石英数据存储到多个模式中。
我该怎么做?
答案 0 :(得分:0)
我认为您需要创建多个指向不同数据库架构的SchedulerFactoryBean bean。