Does Spring Batch have a feature to keep track of processed rows?
问题 I currently use Spring Batch to update my entities through an external application which writes directly in my database through an ODBC connection. For the sake of simplicity, I will represent a simplified version of the table schema here (referred as `importshipmentdata in the Java code below): id(integer) entity1_data1(character varying) entity1_data2(character varying) entity2_data2(character varying) import_date(date_created timestamp with time zone) And here is my Job Configuration :