4

It can be useful to have repeatable read for some types of web requests, while others are easiest to implement with read committed. How can I specify which isolation level to use per Http request or per session or per transaction?

maya
  • 41
  • 1
  • 2

1 Answers1

-1

Hibernate has a implementation of database transactions,as default is JDBC Transaction(the other is JTA).

maybe this will for a help hibernate docs-transactions and concurrency

scugxl
  • 317
  • 4
  • 15