Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save Edijun/566b305026e878f1177544bb6c1a63a7 to your computer and use it in GitHub Desktop.
@Bean
public Step csvFileToDatabaseStep() {
return stepBuilderFactory
.get("csvFileToDatabaseStep")
.<Product, Product>chunk(1)
.reader(csvProductReader())
.processor(csvProductProcessor())
.writer(csvProductWriter())
.build();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment