When we set isolation level in @Transactional
annotation, then Isolation level is set on Connection attribute,
so when the transaction is began then it must be firing SET TRANSACTION ISOLATION LEVEL READ COMMITTED
query. (This is my assumption)
So does it fires this query on every Transaction?
does it requires to set transaction isolation on every transaction is spring?