2013-05-01 18:17:27 +08:00
|
|
|
/*
|
2016-01-13 19:56:24 +08:00
|
|
|
* Copyright 2012-2016 the original author or authors.
|
2013-05-01 18:17:27 +08:00
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
2013-06-01 03:26:30 +08:00
|
|
|
|
2013-12-31 16:40:21 +08:00
|
|
|
package sample.batch;
|
2013-05-01 18:17:27 +08:00
|
|
|
|
|
|
|
|
import org.springframework.batch.core.Job;
|
|
|
|
|
import org.springframework.batch.core.Step;
|
|
|
|
|
import org.springframework.batch.core.StepContribution;
|
|
|
|
|
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.scope.context.ChunkContext;
|
|
|
|
|
import org.springframework.batch.core.step.tasklet.Tasklet;
|
|
|
|
|
import org.springframework.batch.repeat.RepeatStatus;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
2013-07-27 05:10:38 +08:00
|
|
|
import org.springframework.boot.SpringApplication;
|
2014-11-07 05:50:45 +08:00
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
2013-05-01 18:17:27 +08:00
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
|
|
|
2014-11-07 05:50:45 +08:00
|
|
|
@SpringBootApplication
|
2013-05-01 18:17:27 +08:00
|
|
|
@EnableBatchProcessing
|
2013-07-06 07:44:24 +08:00
|
|
|
public class SampleBatchApplication {
|
2013-05-01 18:17:27 +08:00
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private JobBuilderFactory jobs;
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private StepBuilderFactory steps;
|
|
|
|
|
|
|
|
|
|
@Bean
|
|
|
|
|
protected Tasklet tasklet() {
|
2016-01-13 19:56:24 +08:00
|
|
|
|
2013-05-01 18:17:27 +08:00
|
|
|
return new Tasklet() {
|
|
|
|
|
@Override
|
|
|
|
|
public RepeatStatus execute(StepContribution contribution,
|
|
|
|
|
ChunkContext context) {
|
|
|
|
|
return RepeatStatus.FINISHED;
|
|
|
|
|
}
|
|
|
|
|
};
|
2016-01-13 19:56:24 +08:00
|
|
|
|
2013-05-01 18:17:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Bean
|
|
|
|
|
public Job job() throws Exception {
|
|
|
|
|
return this.jobs.get("job").start(step1()).build();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Bean
|
|
|
|
|
protected Step step1() throws Exception {
|
|
|
|
|
return this.steps.get("step1").tasklet(tasklet()).build();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) throws Exception {
|
|
|
|
|
// System.exit is common for Batch applications since the exit code can be used to
|
|
|
|
|
// drive a workflow
|
2015-10-08 14:32:31 +08:00
|
|
|
System.exit(SpringApplication
|
|
|
|
|
.exit(SpringApplication.run(SampleBatchApplication.class, args)));
|
2013-05-01 18:17:27 +08:00
|
|
|
}
|
2015-06-23 15:47:12 +08:00
|
|
|
|
2013-05-01 18:17:27 +08:00
|
|
|
}
|