@OnSkipInWrite is Not Called in SkipListener
问题 I am reading the csv file and inserting data to database using spring batch(read,process and write).I am using "jpaRepository.save" in itemWriter class to save the data into the database. And I am trying to catch the skipped item and the skipped message in @OnSkipInWrite method but this method is not called even if data are skipped. And in batch_step_execution table : read_count = 18, write_count = 10, write_skip_count = 0, roll_back_count =8. Why the write_skip_count is 0? I just want to