0

We are trying to develop a framework on top of spring batch, basically it has to read the data from database like fields, fields order, file location..etc..

Is there any existing frameworks to achieve this, otherwise please shed some light on this...

Thanks, MK

Maddy
  • 109
  • 1
  • 8

2 Answers2

0

What do you want Spring Batch to read in? Have you looked at ItemReaders? http://docs.spring.io/spring-batch/trunk/reference/html/readersAndWriters.html

In your ItemReader constructor you can read in whatever configuration you require.

And see:

Reading Records From a Database in Spring Batch

Community
  • 1
  • 1
Brian Kates
  • 480
  • 4
  • 14
0

I don't think there is any such extension available over the framework. You might have to write your own customizations to achieve a database driven configuration for Spring Batch.

Saifuddin Merchant
  • 1,071
  • 7
  • 13