com.github.database.rider.springboot.model.user.UserRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of springboot-dbunit-sample Show documentation
Show all versions of springboot-dbunit-sample Show documentation
Use Spring Data JPA + Hibernate + H2 + Database Rider for testing a Spring Boot application
package com.github.database.rider.springboot.model.user;
import javax.transaction.Transactional;
import org.springframework.data.repository.CrudRepository;
@Transactional
public interface UserRepository extends CrudRepository {
/**
*
* @param email the user email.
*/
User findByEmail(String email);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy