I do some treatment on many data, so i do a loop.
@Transactional
@Override
public void processPayment(List<Long> paymentsId, PaymentModeEnum paymentMode) throws ProcessPaymentException{
...
processCreditCardPayment(payments);
}
private void processCreditCardPayment(List<Payment> payments) throws ProcessPaymentException {
for (Payment payment : payments) {
try {
//save to db
}catch (ProcessPaymentException ppe) {
}
}
}
ProcessPaymentException extends Exception
If I loop on 10 item, on the last one, error happen. Everything is rollbacked (all my item) or only the one in error?
In this case nothing would be rolled back. It is because you caught the exception and it didn't pass Spring transaction boundary.
Read here in Spring Docs: