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 boutique.service.CommandeService.java

/**
 *
 * 
 * @author admin
 */
public interface CommandeService extends CrudRepository<Commande, Long> {

From source file com.github.fbhd.dao.TicketDao.java

/**
 *
 * @author moscac
 */
@Transactional
public interface TicketDao extends CrudRepository<Ticket, UUID> {

From source file br.com.ajaio.midas.repository.BancoRepository.java

/**
 *
 * @author antonio.amorim
 */
@Repository
public interface BancoRepository extends CrudRepository<BancoEntity, Long> {

From source file com.github.fbhd.dao.ProductDao.java

/**
 *
 * @author moscac
 */
@Transactional
public interface ProductDao extends CrudRepository<Product, UUID> {

From source file org.kievguide.repository.CommentRepository.java

/**
 *
 * @author denis
 */
public interface CommentRepository extends CrudRepository<Comment, Long> {
    public List<Comment> findByPlaceidOrderByIdDesc(Place placeid);

From source file runtheshow.resource.repository.RegionRepository.java

/**
 *
 * @author simaydin
 */
public interface RegionRepository extends CrudRepository<Region, Long> {
    // recherche d'une region

From source file br.org.fepb.seginus.repository.PerfilRepositorio.java

/**
 *
 * @author Thiago
 */
@Repository
public interface PerfilRepositorio extends CrudRepository<Perfil, Long> {

From source file br.org.fepb.seginus.repository.SessaoRepositorio.java

/**
 *
 * @author Thiago
 */
@Repository
public interface SessaoRepositorio extends CrudRepository<Sessao, Long> {

From source file com.github.fbhd.dao.CategoryDao.java

/**
 *
 * @author moscac
 */
@Transactional
public interface CategoryDao extends CrudRepository<Category, UUID> {

From source file com.github.fbhd.dao.UserDao.java

/**
 *
 * @author moscac
 */
@Transactional
public interface UserDao extends CrudRepository<Category, UUID> {