How to use @Transactional with Spring Data?
What is your question actually about? The usage of the @Repository annotation or @Transactional. @Repository is not needed at all as the interface you declare will be backed by a proxy the Spring Data infrastructure creates and activates exception translation for anyway. So using this annotation on a Spring Data repository interface does not have … Read more