Spring / Spring Data Access
What is the difference between serializable and repeatable read isolation level?
In a Repeatable Read isolation level, new rows can be inserted into the dataset.
In a Serializable isolation level all the rows are locked for the duration of the transaction, no insert,update or delete is allowed.
More Related questions...