Is there any configuration for spring-batch, or in the datasources configurations, where I can disable/ignore all commits?
Basically, I want to execute my batch without updating the database just for testing. This would be perfect if I could disable and enable commits with a property
Edit: I don't want to use an in memory database because I want to process millions of lines that I have in the database. The batch reads lines from database and changes the state those lines after processing and I don't want to persist this changes.