Multiple sql statements in spring batch writer -
i want know if possible execute 2 statements in spring batch writer? not want use multiple writers.
yes, can...
public class customitemwriter<t> implements itemwriter<t> { public void write(list<? extends t> items) throws exception { //execute many statements want } }
Comments
Post a Comment