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 com.ebay.logstorm.server.services.ClusterEntityRepository.java

/**
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with

From source file com.ebay.logstorm.server.services.PipelineEntityRepository.java

/**
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with

From source file com.iselect.kernal.ISelectCrudDao.java

/**
 *
 * @author Hiep
 */
@NoRepositoryBean
public interface ISelectCrudDao<T> extends Repository<T, Long> {

From source file com.ebay.logstorm.server.services.PipelineExecutionRepository.java

/**
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with

From source file com.mycompany.test.spring.boot.jpa.service.CityRepository.java

interface CityRepository extends Repository<City, Long> {

    Page<City> findAll(Pageable pageable);

    City save(City city);

From source file io.github.howiefh.jeews.common.dao.CrudDao.java

/**
 * ?
 * 
 * @author howiefh
 */
public interface CrudDao<T, ID extends Serializable> extends Repository<T, ID> {

From source file com.ar.dev.tierra.api.repository.FacturaProductoRepository.java

/**
 *
 * @author PauloGaldo
 */
public interface FacturaProductoRepository extends Repository<FacturaProducto, String> {

From source file com.ar.dev.tierra.api.repository.StockTierraRepository.java

/**
 *
 * @author PauloGaldo
 */
public interface StockTierraRepository extends Repository<StockTierra, Serializable> {

From source file com.ar.dev.tierra.api.repository.StockBebelandiaRepository.java

/**
 *
 * @author PauloGaldo
 */
public interface StockBebelandiaRepository extends Repository<StockBebelandia, Serializable> {

From source file com.ar.dev.tierra.api.repository.StockLibertadorRepository.java

/**
 *
 * @author PauloGaldo
 */
public interface StockLibertadorRepository extends Repository<StockLibertador, Serializable> {