Example usage for org.springframework.data.repository Repository interface-usage

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

Introduction

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

Usage

From source file sample.ui.repository.OwnerRepository.java

/**
 * Repository class for <code>Owner</code> domain objects All method names are
 * compliant with Spring Data naming conventions so this interface can easily be
 * extended for Spring Data See here:
 * http://static.springsource.org/spring-data/
 * jpa/docs/current/reference/html/jpa

From source file example.ReactivePersonRepository.java

/**
 * Reactive Repository using Project Reactor and RxJava types.
 * 
 * @author Mark Paluch
 */
@NoRepositoryBean

From source file com.github.bonndan.fullofstars.service.BlipRepository.java

@Transactional
public interface BlipRepository extends Repository<Blip, Long> {

    Page<Blip> findByUser(User user, Pageable pageable);

}

From source file com.jinlong.sample.data.jpa.service.ReviewRepository.java

/**
 * @author jinlong
 */
interface ReviewRepository extends Repository<Review, Long> {

    /**

From source file example.springdata.cassandra.java8.PersonRepository.java

/**
 * Repository to manage {@link Person} instances.
 * 
 * @author Mark Paluch
 */
public interface PersonRepository extends Repository<Person, String> {

From source file com.pet.demo.repository.springdatajpa.SpringDataOwnerRepository.java

/**
 * Spring Data JPA specialization of the {@link OwnerRepository} interface
 *
 * @author Michael Isvy
 * @since 15.1.2013
 */

From source file com.spring.blueye.repository.springdatajpa.StatusRepositoryData.java

/**
 * Spring Data JPA specialization of the {@link StatusRepository} interface
 *
 * @author Kamlesh 
 * @since 8.3.2013
 */

From source file io.hedwig.petclinic.ui.repository.OwnerRepository.java

/**
 * Repository class for <code>Owner</code> domain objects All method names are
 * compliant with Spring Data naming conventions so this interface can easily be
 * extended for Spring Data See here:
 * http://static.springsource.org/spring-data/
 * jpa/docs/current/reference/html/jpa

From source file com.pet.demo.repository.springdatajpa.SpringDataPetRepository.java

/**
 * Spring Data JPA specialization of the {@link PetRepository} interface
 *
 * @author Michael Isvy
 * @since 15.1.2013
 */

From source file com.work.petclinic.repository.OwnerRepository.java

/**
 * Repository class for <code>Owner</code> domain objects All method names are
 * compliant with Spring Data naming conventions so this interface can easily be
 * extended for Spring Data See here:
 * http://static.springsource.org/spring-data/
 * jpa/docs/current/reference/html/jpa