在Spring中将石英数据保存到Oracle数据库中的多个模式

时间:2014-04-17 10:31:00

标签: java spring oracle quartz-scheduler

我正在使用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中配置的一个模式中。我需要做的是将石英数据存储到多个模式中。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

我认为您需要创建多个指向不同数据库架构的SchedulerFactoryBean bean。