Example usage for org.springframework.data.jpa.repository JpaRepository interface-usage

List of usage examples for org.springframework.data.jpa.repository JpaRepository interface-usage

Introduction

In this page you can find the example usage for org.springframework.data.jpa.repository JpaRepository interface-usage.

Usage

From source file th.co.geniustree.intenship.advisor.repo.StudentClassYearRepo.java

/**
 *
 * @author User
 */
public interface StudentClassYearRepo extends JpaRepository<StudentClassYear, Integer> {

From source file za.co.dwarfsun.jobcardmanager.repository.JobCardAttributeRepository.java

/**
 *
 * @author Matthew
 */
public interface JobCardAttributeRepository extends JpaRepository<JobCardAttribute, Long> {

From source file com.blogspot.na5cent.resourcelocal.repo.DepartmentRepo.java

/**
 *
 * @author anonymous
 */
public interface DepartmentRepo extends JpaRepository<Department, Integer> {

From source file it.univaq.disim.mobile.cityshop.business.impl.BrandRepository.java

/**
 *
 * @author cityshop
 */
public interface BrandRepository extends JpaRepository<Brand, Long> {

From source file th.co.geniustree.dental.repo.AuthorityRepo.java

/**
 *
 * @author Best
 */
public interface AuthorityRepo extends JpaRepository<Authority, String> {

From source file beadsan.repository.MstTagRepository.java

/**
 * @author ko-aoki
 */
public interface MstTagRepository extends JpaRepository<MstTag, Integer> {

    MstTag findByName(@Param("name") String name);

From source file th.co.geniustree.intenship.advisor.repo.CategoryGroupCourseRepo.java

/**
 *
 * @author User
 */
public interface CategoryGroupCourseRepo extends JpaRepository<CategoryGroupCourse, Integer> {

From source file com.mycompany.loginApp.Repository.RoleRepository.java

/**
 *
 * @author Ajay
 */
public interface RoleRepository extends JpaRepository<Role, Integer> {

From source file com.orchestra.portale.persistence.sql.repositories.PoiRepository.java

/**
 *
 * @author mekko
 */
public interface PoiRepository extends JpaRepository<Poi, Integer> {

From source file com.pablinchapin.planz.dailytaskmanager.repository.TaskRepository.java

/**
 *
 * @author pvargas
 */
public interface TaskRepository extends JpaRepository<Task, Long> {