All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.database.rider.springboot.model.user.UserRepository Maven / Gradle / Ivy

Go to download

Use Spring Data JPA + Hibernate + H2 + Database Rider for testing a Spring Boot application

There is a newer version: 1.37.1
Show newest version
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