Skip to content

Instantly share code, notes, and snippets.

@Edijun
Created April 30, 2019 07:03
Show Gist options
  • Select an option

  • Save Edijun/c5aa8f1728cb938a19f4e9e9fac1d110 to your computer and use it in GitHub Desktop.

Select an option

Save Edijun/c5aa8f1728cb938a19f4e9e9fac1d110 to your computer and use it in GitHub Desktop.
@Bean
Job csvFileToDatabaseJob(JobCompletionNotificationListener listener) {
return jobBuilderFactory
.get("csvFileToDatabaseJob")
.incrementer(new RunIdIncrementer()).listener(listener)
.flow(csvFileToDatabaseStep())
.end().build();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment