Skip to content Skip to sidebar Skip to footer

Spring Isolation Support? Msql Snapshot Isolation

We are using SQL Server and it is possible that Snapshot isolation may be a good way to improve out performance and fix some deadlocking concerns. Assuming that we have a real nee

Solution 1:

4096 is code for SNAPSHOT isolation, refer post here, you have to set isolation level on connection object, I don't think you can achieve this with @Transactional, you can use other transaction solutions provided by spring, mainly 'TransactionTemplate'.


Post a Comment for "Spring Isolation Support? Msql Snapshot Isolation"