java - 将本地值作为作业参数传递给作业,同时仍使用 JobParametersIncrementer

标签 java spring spring-batch

我有一个 spring-batch 作业,我从 JobOperator#startNextInstance(String) 方法开始:

@Autowired
private JobOperator jobOperator;

private startMyJob() {
    jobOperator.startNextInstance("myJob");
}

使用此方法,spring-batch 自动从实现 JobParametersIncrementer 接口(interface)的 bean 创建作业参数。我的实现添加了一些全局可用的状态信息,例如当前用户和当前时间。

现在,我想将另一个作业参数传递给仅在 startMyJob() 方法中本地可用的作业。我尝试使用 JobOperator#start(String, String) 方法:

private startMyJob() {
    jobOperator.start("myJob", "localJobParam=someLocalValue");
}

但是,现在不再调用 JobParametersIncrementer,并且全局参数值丢失。显然,我可以自己调用增量器,将所有参数混合到一个参数字符串中,并将其传递给 JobOperator#start(String, String) 方法:

@Autowired
private JobParametersIncrementer jobParametersIncrementer;

private startMyJob() {
    JobParameters jobParameters = jobParametersIncrementer.getNext(null);
    // convert jobParameters to comma separated key=value pairs
    // add additional key=value pair with locally available data
    jobOperator.start("myJob", commaSeparatedKeyValuePairString);
}

此过程会导致代码相当长且繁琐,因为 JobParameters 类没有提供直接方法来获取逗号分隔的键=值对字符串。

是否有更好的方法来启 Action 业,其中一些作业参数直接传递,一些结果来自 JobIncrementer bean?

最佳答案

我在 Spring 框架中找不到解决方案,因此我实现了一个自定义 JobOperator,它将所有调用委托(delegate)给 SimpleJobOperator,并简单地声明一个自动的新方法 startNextInstance(String jobName, String parameters)如果作业有 jobParameterIncrementer,请使用 jobParameterIncrementer。

public class JobParametersJobOperator implements JobOperator, InitializingBean {

    private final Log logger = LogFactory.getLog(this.getClass());
    private SimpleJobOperator delegate;


    private ListableJobLocator jobRegistry;
    private JobExplorer jobExplorer;
    private JobLauncher jobLauncher;
    private JobRepository jobRepository;
    private JobParametersConverter jobParametersConverter = new DefaultJobParametersConverter();

    public Long startNextInstance(String jobName, String parameters) throws NoSuchJobException, JobParametersNotFoundException, JobParametersInvalidException {
        this.logger.info("Locating parameters for next instance of job with name=" + jobName);
        Job job = this.jobRegistry.getJob(jobName);
        List lastInstances = this.jobExplorer.getJobInstances(jobName, 0, 1);
        JobParametersIncrementer incrementer = job.getJobParametersIncrementer();
        JobParameters jobParameters = this.jobParametersConverter.getJobParameters(PropertiesConverter.stringToProperties(parameters));
        if(incrementer == null) {
            throw new JobParametersNotFoundException("No job parameters incrementer found for job=" + jobName);
        } else {
            jobParameters = incrementer.getNext(jobParameters);
            this.logger.info(String.format("Attempting to launch job with name=%s and parameters=%s", new Object[]{jobName, parameters}));
            try {
                return this.jobLauncher.run(job, jobParameters).getId();
            } catch (JobExecutionAlreadyRunningException var7) {
                throw new UnexpectedJobExecutionException(String.format("Illegal state (only happens on a race condition): %s with name=%s and parameters=%s", new Object[]{"job already running", jobName, parameters}), var7);
            } catch (JobRestartException var8) {
                throw new UnexpectedJobExecutionException(String.format("Illegal state (only happens on a race condition): %s with name=%s and parameters=%s", new Object[]{"job not restartable", jobName, parameters}), var8);
            } catch (JobInstanceAlreadyCompleteException var9) {
                throw new UnexpectedJobExecutionException(String.format("Illegal state (only happens on a race condition): %s with name=%s and parameters=%s", new Object[]{"job instance already complete", jobName, parameters}), var9);
            }
        }
    }

    @Override
    public List<Long> getExecutions(long l) throws NoSuchJobInstanceException {
        return delegate.getExecutions(l);
    }

    @Override
    public List<Long> getJobInstances(String s, int i, int i1) throws NoSuchJobException {
        return delegate.getJobInstances(s, i, i1);
    }

    @Override
    public Set<Long> getRunningExecutions(String s) throws NoSuchJobException {
        return delegate.getRunningExecutions(s);
    }

    @Override
    public String getParameters(long l) throws NoSuchJobExecutionException {
        return delegate.getParameters(l);
    }

    @Override
    public Long start(String s, String s1) throws NoSuchJobException, JobInstanceAlreadyExistsException, JobParametersInvalidException {
        return delegate.start(s, s1);
    }

    @Override
    public Long restart(long l) throws JobInstanceAlreadyCompleteException, NoSuchJobExecutionException, NoSuchJobException, JobRestartException, JobParametersInvalidException {
        return delegate.restart(l);
    }

    @Override
    public Long startNextInstance(String s) throws NoSuchJobException, JobParametersNotFoundException, JobRestartException, JobExecutionAlreadyRunningException, JobInstanceAlreadyCompleteException, UnexpectedJobExecutionException, JobParametersInvalidException {
        return delegate.startNextInstance(s);
    }

    @Override
    public boolean stop(long l) throws NoSuchJobExecutionException, JobExecutionNotRunningException {
        return delegate.stop(l);
    }

    @Override
    public String getSummary(long l) throws NoSuchJobExecutionException {
        return delegate.getSummary(l);
    }

    @Override
    public Map<Long, String> getStepExecutionSummaries(long l) throws NoSuchJobExecutionException {
        return delegate.getStepExecutionSummaries(l);
    }

    @Override
    public Set<String> getJobNames() {
        return delegate.getJobNames();
    }

    @Override
    public JobExecution abandon(long l) throws NoSuchJobExecutionException, JobExecutionAlreadyRunningException {
        return delegate.abandon(l);
    }

    public void setJobRegistry(ListableJobLocator jobRegistry) {
        this.jobRegistry = jobRegistry;
    }

    public void setJobExplorer(JobExplorer jobExplorer) {
        this.jobExplorer = jobExplorer;
    }

    public void setJobLauncher(JobLauncher jobLauncher) {
        this.jobLauncher = jobLauncher;
    }

    public void setJobRepository(JobRepository jobRepository) {
        this.jobRepository = jobRepository;
    }

    @Override
    public void afterPropertiesSet() throws Exception {
        delegate = new SimpleJobOperator();
        delegate.setJobRegistry(jobRegistry);
        delegate.setJobExplorer(jobExplorer);
        delegate.setJobLauncher(jobLauncher);
        delegate.setJobRepository(jobRepository);
    }
}

这是配置文件:

<bean id="jobOperator" class="com.x.y.z.JobParametersJobOperator">
    <property name="jobExplorer">
        <bean class="org.springframework.batch.core.explore.support.JobExplorerFactoryBean">
            <property name="dataSource" ref="dataSource" />
        </bean>
    </property>
    <property name="jobRepository" ref="jobRepository" />
    <property name="jobRegistry" ref="jobRegistry" />
    <property name="jobLauncher" ref="jobLauncher" />
</bean>

它可以这样调用:

public class Launcher {

    private static final Logger LOG = LoggerFactory.getLogger(Launcher.class);

    public static void main(String[] args) throws IOException, JobParametersInvalidException, JobExecutionAlreadyRunningException, JobRestartException, JobInstanceAlreadyCompleteException, NoSuchJobException, JobParametersNotFoundException, JobInstanceAlreadyExistsException {
        ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("application-context.xml");
        JobParametersJobOperator operator = context.getBean(JobParametersJobOperator.class);
        JobParameters jobParameters = new JobParametersBuilder().addString("schedule.date", args[0]).toJobParameters();
        for (String job: operator.getJobNames()) {
            operator.startNextInstance(job, PropertiesConverter.propertiesToString(jobParameters.toProperties()));
        }
    }
}

也许这对某人有用。

关于java - 将本地值作为作业参数传递给作业,同时仍使用 JobParametersIncrementer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19538504/

相关文章:

java - 如何确保明确指定java系统属性 `user.timezone`?

java - Hibernate继承,父类应该根据决策者是子类还是父类

java - ActiveMQ 设置 - 无法将消息发送到队列(错误 - java.io.IOException : Unknown data type: 47)

java - 是否有真实世界的 Spring 和 Hibernate 示例的来源?

spring - org.springframework.boot.autoconfigure.batch.BatchConfigurerConfiguration$JdbcBatchConfiguration 中方法batchConfigurer的参数1 必需

java - 如何呈现对象数组,就像另一个对象数组一样

java - 大型整数集的搜索和差异

java - 如何在 spring context.xml 中使用 pom 属性?

java - 如何使用 Spring Batch 向值添加双引号

java - Spring Batch 挂起,没有输出