Spring Batch的JobParameters

时间:2015-01-09 13:48:42

标签: java spring spring-batch

我正在尝试将作业参数注入自定义ItemReader。我已经回顾了有关该主题的所有StackOverflow说明(例如:How to get access to job parameters from ItemReader, in Spring Batch?),我发现这是一个常见的难点,大部分都没有解决。我希望春天的大师(@Michael Minella任何人)能够看到这一点,并有一些见解。

即使没有代码或配置更改,我已经确定了大约十分之一的运行参数可用。这是随机成功而非随机失败的情况,因此很难追查。

我使用调试器挖掘了spring代码,并确定当失败时,在注入发生时没有在Spring中注册名为jobParameters的bean。

我使用Spring 4.1.4和spring-batch 3.0.2以及spring-data-jpa 1.7.1和spring-data-commons 1.9.1,在java 8中运行。

Java类

@Component("sourceSelectionReader")
@Scope("step")
public class SourceSelectionReaderImpl  
implements ItemReader<MyThing> {
    private Map<String,Object> jobParameters;

// ... snip ...


    @Autowired
    @Lazy
    @Qualifier(value="#{jobParameters}")
    public void setJobParameters(Map<String, Object> jobParameters) {
        this.jobParameters = jobParameters;
    }
}

工作启动参数:

launch-context.xml job1 jobid(long)=1

launch-context.xml(减去绒毛):

<context:property-placeholder location="classpath:batch.properties" />

<context:component-scan base-package="com.maxis.maximo.ilm" />

<jdbc:initialize-database data-source="myDataSource"  enabled="false">
    <jdbc:script location="${batch.schema.script}" />
</jdbc:initialize-database>

<batch:job-repository id="jobRepository" 
    data-source="myDataSource"
    transaction-manager="transactionManager"
    isolation-level-for-create="DEFAULT"
    max-varchar-length="1000"/>

<import resource="classpath:/META-INF/spring/module-context.xml" />

Module-context.xml(减去绒毛):

<description>Example job to get you started. It provides a skeleton for a typical batch application.</description>

<import resource="classpath:/META-INF/spring/hibernate-context.xml"/>
<import resource="classpath:/META-INF/spring/myapp-context.xml"/>

<context:component-scan base-package="com.me" />
<bean class="org.springframework.batch.core.scope.StepScope" />

<batch:job id="job1">
    <batch:step id="step0002"  >            
        <batch:tasklet transaction-manager="transactionManager" start-limit="100" >
            <batch:chunk reader="sourceSelectionReader" writer="selectedDataWriter" commit-interval="1" />
        </batch:tasklet>
    </batch:step>
</batch:job> 

2 个答案:

答案 0 :(得分:2)

使Job Parameters工作的重要步骤是定义StepScope bean并确保您的reader是@StepScope组件。

我会尝试以下方法:

首先确保定义了一个步骤bean。这很适合使用Java配置进行设置:

@Configuration
public class JobFrameworkConfig {  
    @Bean
    public static StepScope scope() {
        return new StepScope();
    }
    // jobRegistry, transactionManager etc...
}

然后,通过使用@StepScope - 注释确保您的bean是步骤范围的(几乎与您的示例中一样)。注入不是@Value的{​​{1}}。

@Lazy

答案 1 :(得分:-1)

尝试在@Component(“sourceSelectionReader”)之后添加@DependsOn(“jobParameters”)