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

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

Introduction

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

Usage

From source file com.gamewin.weixin.repository.GameDao.java

public interface GameDao extends PagingAndSortingRepository<Game, Long>, JpaSpecificationExecutor<Game> {

}

From source file cn.wuwenyao.site.dao.base.BaseDao.java

@NoRepositoryBean
public abstract interface BaseDao<T> extends PagingAndSortingRepository<T, Long>, JpaSpecificationExecutor<T> {

}

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

/**
 *
 * @author Best
 */
public interface PatientRepo extends JpaRepository<Patient, Integer>, JpaSpecificationExecutor<Patient> {

From source file com.gamewin.weixin.repository.GameCodeDao.java

public interface GameCodeDao
        extends PagingAndSortingRepository<GameCode, Long>, JpaSpecificationExecutor<GameCode> {

}

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

/**
 *
 * @author Best
 */

public interface DoctorRepo extends JpaRepository<Doctor, Integer>, JpaSpecificationExecutor<Doctor> {

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

/**
 *
 * @author BestKung
 */
public interface TmpProductRepo extends JpaRepository<TmpProduct, Integer>, JpaSpecificationExecutor<TmpProduct> {

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

/**
 *
 * @author Best
 */
public interface TypeOfMedicalRepo
        extends JpaRepository<TypeOfMedical, Integer>, JpaSpecificationExecutor<TypeOfMedical> {

From source file com.cami.persistence.dao.IUserDao.java

/**
 *
 * @author Brice GUEMKAM <briceguemkam@gmail.com>
 */
public interface IUserDao extends JpaRepository<User, Long>, JpaSpecificationExecutor<User> {

From source file com.surfilter.flood.maintain.repository.UserDao.java

public interface UserDao extends JpaSpecificationExecutor<User>, PagingAndSortingRepository<User, Long> {
    User findByLoginName(String loginName);
}

From source file com.xyxy.platform.examples.showcase.repository.jpa.UserDao.java

public interface UserDao extends PagingAndSortingRepository<User, Long>, JpaSpecificationExecutor<User> {

    User findByName(String name);

    User findByLoginName(String loginName);
}