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

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

Introduction

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

Usage

From source file onlineBoutique.service.ConnexionServiceCrud.java

/**
 *
 * @author admin
 */
@Repository
public interface ConnexionServiceCrud extends CrudRepository<Utilisateur, Long> {

From source file io.fourfinanceit.homework.repository.LoanApplicationRepository.java

/**
 *
 * @author sergey_putilov
 */
@Repository
public interface LoanApplicationRepository extends CrudRepository<LoanApplication, Long> {

From source file edu.eci.cosw.persistencia.componentes.RepositorioCalificacion.java

/**
 *
 * @author LuisCarlos
 */
public interface RepositorioCalificacion extends CrudRepository<Calificacion, Integer> {
    @Query("select e from Calificacion e where e.ensayo.idEnsayo=:idx")

From source file junglespeed.service.CarteCrudService.java

/**
 *
 * @author tom
 */
public interface CarteCrudService extends CrudRepository<Carte, Long> {

From source file com.hp.autonomy.frontend.find.core.savedsearches.UserEntityRepository.java

public interface UserEntityRepository extends CrudRepository<UserEntity, Long> {

    // Propagation set to REQUIRES_NEW in order to run this query in a new transaction, thereby avoiding an
    // infinite loop caused by spring JPA auditing (and the fact we run this query from the AuditAware.getCurrentAuditor() method).

    // See: http://forum.spring.io/forum/spring-projects/data/106312-spring-data-jpa-infinite-loop-when-updating-but-not-saving-an-auditable-object

From source file com.jcertif.abj2014.intro.spring.data.after.SpeakerRepository.java

/**
 *
 * @author Komi Serge Innocent <komi.innocent@gmail.com>
 */
public interface SpeakerRepository extends CrudRepository<Speaker, Long> {

From source file persistence.TorneoRepository.java

/**
 *
 * @author fercho
 */
public interface TorneoRepository extends CrudRepository<Torneo, Integer> {

From source file com.vz.ids.solutions.data.repo.IdsChannelRepo.java

/**
 *
 * @author v086714
 */
public interface IdsChannelRepo extends CrudRepository<IdsChannelObject, String> {
    @Query("Select * from ids_solutions.ids_channel where oemName = ?0 and topic = ?1")

From source file ch.heigvd.gamification.services.dao.PointAwardsRepository.java

/**
 *
 * @author Thibaut-PC
 */
public interface PointAwardsRepository extends CrudRepository<PointAwards, Long> {
    PointAwards findByEnduser(EndUser endUser);

From source file pe.com.bpm.evo.repository.BpmbtmTaskinststateRepository.java

/**
 *
 * @author Prueba
 */
@Repository("BpmbtmTaskinststateRepository")
public interface BpmbtmTaskinststateRepository extends CrudRepository<BpmbtmTaskinststate, BpmbtmTaskinststatePK> {