/* * Copyright 2019 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package io.spring.migrateschedule.configuration; import io.spring.migrateschedule.service.ConvertScheduleInfo; import io.spring.migrateschedule.service.MigrateScheduleService; import io.spring.migrateschedule.service.MigrateProperties; import io.spring.migrateschedule.batch.SchedulerProcessor; import io.spring.migrateschedule.batch.SchedulerReader; import io.spring.migrateschedule.batch.SchedulerWriter; import io.spring.migrateschedule.service.ScheduleProcessedException; import io.spring.migrateschedule.service.SchedulerSkipPolicy; import org.springframework.batch.core.Job; import org.springframework.batch.core.Step; import org.springframework.batch.core.configuration.annotation.EnableBatchProcessing; import org.springframework.batch.core.configuration.annotation.JobBuilderFactory; import org.springframework.batch.core.configuration.annotation.StepBuilderFactory; import org.springframework.batch.core.launch.support.RunIdIncrementer; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.cloud.deployer.spi.scheduler.ScheduleInfo; import org.springframework.cloud.deployer.spi.scheduler.Scheduler; import org.springframework.cloud.task.configuration.EnableTask; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; /** * @author Glenn Renfro */ @Configuration @EnableBatchProcessing @EnableTask public class BatchConfiguration { @Autowired public JobBuilderFactory jobBuilderFactory; @Autowired public StepBuilderFactory stepBuilderFactory; @Bean public Job importUserJob(Step migrationStep) { return this.jobBuilderFactory.get("migrationJob") .incrementer(new RunIdIncrementer()) .start(migrationStep) .build(); } @Bean public Step migrationStep(SchedulerReader itemReader, SchedulerProcessor schedulerProcessor, SchedulerWriter writer) { return this.stepBuilderFactory.get("migrationStep") . chunk(1) .reader(itemReader) .processor(schedulerProcessor) .writer(writer) .faultTolerant() .skip(ScheduleProcessedException.class) .skipPolicy(new SchedulerSkipPolicy()) .build(); } @Bean public SchedulerReader itemReader(MigrateScheduleService scheduler) { return new SchedulerReader(scheduler); } @Bean public SchedulerWriter itemWriter(Scheduler scheduler, MigrateScheduleService scheduleService) { return new SchedulerWriter(scheduleService, scheduler); } @Bean public SchedulerProcessor itemProcessor(MigrateScheduleService migrateScheduleService, MigrateProperties migrateProperties) { return new SchedulerProcessor(migrateScheduleService, migrateProperties); } @Bean @ConfigurationProperties public MigrateProperties converterProperties() { return new MigrateProperties(); } }