14

我已经成功建立了一个教程 Spring Batch 项目。我真的很想知道是否可以在“春季级别”使其成为多线程。

我想要的基本想法是列出任务或任务步骤,并让它们由独立线程拾取和处理,理想情况下是在限制为“n”个线程的池中。

这可能吗?如果是这样,怎么做?有人可以从我目前所处的位置引导我到那个点吗?

我的简单项目来自本教程。它基本上具有不同的任务,可以将消息打印到屏幕上。

这是我当前的 simpleJob.xml 文件,其中包含作业详细信息:

<import resource="applicationContext.xml"/>

    <bean id="hello" class="helloworld.PrintTasklet">
        <property name="message" value="Hello"/>
    </bean>

    <bean id="space" class="helloworld.PrintTasklet">
        <property name="message" value=" "/>
    </bean>

    <bean id="world" class="helloworld.PrintTasklet">
        <property name="message" value="World!\n"/>
    </bean>

    <bean id="taskletStep" class="org.springframework.batch.core.step.tasklet.TaskletStep" >
        <property name="jobRepository" ref="jobRepository"/>
        <property name="transactionManager" ref="transactionManager"/>
    </bean>

    <bean id="simpleJob" class="org.springframework.batch.core.job.SimpleJob">
        <property name="name" value="simpleJob" />
        <property name="steps">
            <list>
                <bean parent="taskletStep">
                    <property name="tasklet" ref="hello"/>
                </bean>
                <bean parent="taskletStep">
                    <property name="tasklet" ref="space"/>
                </bean>
                <bean parent="taskletStep">
                    <property name="tasklet" ref="world"/>
                </bean>
            </list>
        </property>
        <property name="jobRepository" ref="jobRepository"/>
    </bean>

我的 appContext 包含作业存储库 bean ( SimpleJobRepository)、事务管理器 ( ResourceLessTransactionManager) 和作业启动器 ( SimpleJobLauncher)。如果需要,我也可以提供此代码,我只是不想让这篇文章陷入大量 XML 的困境。

非常感谢您的帮助!

4

2 回答 2

15

创建一个拆分,您将能够在不同分支之间使用多线程。使用 TaskExecutor 来定义您的并行策略。

请参阅多线程步骤

如果要使用多线程和 MapJobRepository(在最新版本之前,此 JobRepository 不是线程安全的),请务必使用最新版本的 Spring Batch。

于 2010-07-19T15:11:32.897 回答
6

看看让的答案'。一个简单的方法是创建一个 SimpleAsyncTaskExecutor 的 bean 并关联一个 tasklet 来使用这个 bean,就像这样。

<bean id="simpleTaskExecutor"
    class="org.springframework.core.task.SimpleAsyncTaskExecutor">
    <property name="concurrencyLimit" value="10"/>
</bean>

<batch:job id="jobTest">
    <batch:step id="step1">
    <!-- throttle-limit default is 4. Increase this to ensure that a thread pool is fully utilized -->
        <batch:tasklet task-executor="simpleTaskExecutor" throttle-limit="20">
            <batch:chunk />
        </batch:tasklet>
    </batch:step>
</batch:job>
于 2015-01-06T11:33:53.813 回答