RootCauseunvalidated
Declared query methods (including default methods) do not get any transaction configuration applied by default. — To run those methods transactionally. Tension: you have added a custom method - `void deleteByEmail(String email);`. Outcome: use `@Transactional` at the repository interface you define.
c6dbcc25-7ec5-4e3f-bd65-056640111234
Declared query methods (including default methods) do not get any transaction configuration applied by default. — To run those methods transactionally. Tension: you have added a custom method - void deleteByEmail(String email);. Outcome: use @Transactional at the repository interface you define.