You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Be it save with relationships or loading of cyclic graph data, both operations will issue multiple queries.
If the user does not specify transactions via @Transactional or TransactionTemplate/TransactionalOperator, each query will happen in its own transaction. To avoid this surprising scenario for the users we should create transactions around those batches of operations if the user does not specify a broader transactional scope.