Some systme info, it's using Spring, Spring Data, JPA and Hibernate.
My question is, what's the difference between the 2? See below:
//this uses plain JPA, and uses Spring's Transactional
@Transactional(isolation=Isolation.READ_UNCOMMITTED)
public List getData() {
//code
}
//this uses Spring Data
@Lock(LockModeType.None)
public List getData() {
//code
}
Locking and Transaction are two different things, but anyway...
This isolation level allows dirty reads. One transaction may see uncommitted changes made by some other transaction.
LockModeType
So, as it said LockModeType.NONE is default for annotations (JPA, annotations left and right) I guess when you use EntityManager.find(Class, Object) the default LockModeType is used.
I suggest to you this link to see some examples to Pessimistic and Optimistic lock, and this link to see Transactional examples