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 it.univaq.disim.mobile.cityshop.business.impl.NegozioRepository.java

/**
 *
 * @author cityshop
 */
public interface NegozioRepository extends JpaRepository<Negozio, Long> {

From source file by.bsuir.finance.repositories.contract.ContractRepository.java

/**
 *
 * @author igor
 */
public interface ContractRepository extends JpaRepository<Contract, Integer> {

From source file com.aestheticsw.jobkeywords.service.termextractor.repository.QueryKeyRepository.java

public interface QueryKeyRepository extends JpaRepository<QueryKey, Long>, QueryKeyRepositoryCustom {

    QueryKey save(QueryKey queryKey);

    // @Query sucks - the syntax is basically undocumented beyond the most simple scenarios. 
    // @Query("select key from #{#entityName} key where key.query = :queryKey.query and key.locale = :queryKey.locale and key.city = :queryKey.city")

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

/**
 *
 * @author cityshop
 */
public interface ProdottoRepository extends JpaRepository<Prodotto, Long> {

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

/**
 *
 * @author cityshop
 */
public interface UtenteRepository extends JpaRepository<Utente, Long> {

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

/**
 *
 * @author User
 */
public interface CourseSubjectClassOneRepo extends JpaRepository<CourseSubjectClassOne, Integer> {

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

/**
 *
 * @author User
 */
public interface CourseSubjectClassTwoRepo extends JpaRepository<CourseSubjectClassTwo, Integer> {

From source file com.cxplonka.feature.service.repository.CustomerRepository.java

/**
 *
 * @author cplonka
 */
public interface CustomerRepository extends JpaRepository<Customer, Long> {

From source file com.mycompany.doctorapp.repository.SicknessRepository.java

/**
 *
 * @author Juhana
 */
public interface SicknessRepository extends JpaRepository<Sickness, Long> {
}

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

/**
 *
 * @author cityshop
 */
public interface CategoriaRepository extends JpaRepository<Categoria, Long> {