How to set isolation level in @Transactional “READ_UNCOMMITTED”. I am using EclipseLink 2.5.1-RC1
问题 I have a requirement to start new Transaction within an ongoing Transaction so that an exception in 2nd transaction will rollback only new transaction not the old one. This I am doing by setting propagation attribute in 2nd transaction like this: @Transactional(propagation = Propagation.REQUIRES_NEW) This created a new Transaction, but the new Transaction needs to read some uncommitted data of the first transaction (dirty read), and also update that data. This I am trying to do by setting