I am new to Spring Batch.
I just want to know whether can we make database calls(jdbccursoritemreader) from Itemprocessor?
I have a requirement to read the db(ItemReader), send the records for processing(ItemProcessor), at the time of processing I need to call other database (Just like reference data) to update the records which I got from ItemReader and finally send the final ones to writer.
Any workaround and suggestions are appreciated.
Thanks.