Implicit transactions

When no transactions are specified explicitly Ebean will create a transaction to perform the action.

Query - read only transaction

For queries Ebean will look to use a read only transaction. If a Read Only DataSource has be configured Ebean will look to use that by default.

Save, Insert, Update

For all persist requests like save, insert, update, delete Ebean will create a transaction and perform a COMMIT at the end of the operation.

Edit Page