Solutionunvalidated
you will have to give `@Transactional` explicitly either at Controller, Service or Repository level — since you have added a custom method - `void deleteByEmail(String email);`. Outcome: To run those methods transactionally, use `@Transactional` at the repository interface you define.
83e635ae-48e6-4814-b90e-9f6973757546
you will have to give @Transactional explicitly either at Controller, Service or Repository level — since you have added a custom method - void deleteByEmail(String email);. Outcome: To run those methods transactionally, use @Transactional at the repository interface you define.