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 me.adaptive.core.data.repo.UserTokenRepository.java

/**
 * Created by panthro on 04/06/15.
 */
@Repository
public interface UserTokenRepository
        extends JpaRepository<UserTokenEntity, Long>, JpaSpecificationExecutor<UserTokenEntity> {

From source file com.fycoder.ll.repository.TlsDao.java

public interface TlsDao extends PagingAndSortingRepository<Tls, Long>, JpaSpecificationExecutor<Tls> {

    Tls findById(Long id);

    //   @Modifying
    //   @Query("select tls from Tls  as tls ,RooTlsoooUse as tu where  tls.tablenameid =tu.tablenameid and tu.useid=?1")

From source file me.adaptive.core.data.repo.AccountMemberRepository.java

/**
 * Created by panthro on 04/06/15.
 */
@Repository
public interface AccountMemberRepository
        extends JpaRepository<AccountMemberEntity, Long>, JpaSpecificationExecutor<AccountMemberEntity> {

From source file me.adaptive.core.data.repo.WorkspaceMemberRepository.java

/**
 * Created by panthro on 04/06/15.
 */
@Repository
public interface WorkspaceMemberRepository
        extends JpaRepository<WorkspaceMemberEntity, Long>, JpaSpecificationExecutor<WorkspaceMemberEntity> {

From source file br.com.modoagil.asr.repository.support.GenericRepository.java

/**
 * Repositrio genrico para extender recursos do Spring Data, para queries ou mtodos mais elaborados
 *
 * @created 17/12/2014
 * @author Bruno Csar Ribeiro e Silva - <a href="mailto:bruno@brunocesar.com">bruno@brunocesar.com</a>
 * @see JpaRepository

From source file net.sf.gazpachoquest.repository.support.GenericRepository.java

@NoRepositoryBean
public interface GenericRepository<T> extends JpaRepository<T, Integer>, JpaSpecificationExecutor<T> {

    long countByExample(T entity, SearchParameters sp);

    Page<T> findByExample(T example, List<Range<?, ?>> ranges, Pageable pageable);

From source file me.adaptive.core.data.repo.MetricServerRepository.java

/**
 * Server information metrics repository
 * <p/>
 * Created by ferranvila on 10/08/15.
 */
@Repository

From source file com.htmlhifive.resourcefw.sample.resource.person.PersonRepository.java

/**
 * Person?????. <br>
 * SpringFramework??????.
 *
 * @author kishigam
 */

From source file org.unidle.repository.UserRepository.java

public interface UserRepository extends JpaRepository<User, UUID>, JpaSpecificationExecutor<User> {

    @Query("SELECT u FROM User u WHERE u.email = :email")
    User findOne(@Param("email") final String email);

}

From source file de.dominikschadow.duke.encounters.repositories.ConfirmationRepository.java

/**
 * JPA repository class to access {@link Confirmation}s.
 *
 * @author Dominik Schadow
 */
public interface ConfirmationRepository extends JpaRepository<Confirmation, Long>, JpaSpecificationExecutor {