Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
虽然我学习和参考JPA 2.0 pessimistic lock,
JPA 2.0 pessimistic lock
请参阅Java Persistence 2.0 中的锁定和并发
悲观锁定假设事务会经常发生冲突。在悲观锁定中,读取数据的事务将其锁定。在第一个事务提交读取之前,另一个事务不能更改数据。
因此,如果您使用悲观锁,您会阻塞整个实体(至少是行),并且没有其他人可以同时读取/写入。