Is there a way to set checkpoints in a spring managed transaction and if something goes wrong, the rollback should happen only till the last checkpoint.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
IMO if we say transaction it must be either all or none.
Doing a rollback till the checkpoint means we are doing a partial transaction.
Still if you want to rollback till some particular point then converting tasks into number of transactions will a good choice. (If you can convert it into multiple transactions)