Example usage for org.springframework.data.jpa.repository.support SimpleJpaRepository subclass-usage

List of usage examples for org.springframework.data.jpa.repository.support SimpleJpaRepository subclass-usage

Introduction

In this page you can find the example usage for org.springframework.data.jpa.repository.support SimpleJpaRepository subclass-usage.

Usage

From source file com.ebiz.modules.persistence.repository.support.MyRepositoryImpl.java

public class MyRepositoryImpl<T, ID extends Serializable> extends SimpleJpaRepository<T, ID>
        implements MyRepository<T, ID> {

    private static final Logger logger = LoggerFactory.getLogger(MyRepositoryImpl.class);

    private final EntityManager em;

From source file com.github.lothar.security.acl.jpa.repository.AclJpaRepository.java

public class AclJpaRepository<T, ID extends Serializable> extends SimpleJpaRepository<T, ID> {

    private Logger logger = LoggerFactory.getLogger(getClass());
    private JpaSpecProvider<T> jpaSpecProvider;

    public AclJpaRepository(Class<T> domainClass, EntityManager em, JpaSpecProvider<T> jpaSpecProvider) {

From source file com.wiiyaya.framework.provider.repository.BaseDaoImpl.java

public class BaseDaoImpl<T, ID extends Serializable> extends SimpleJpaRepository<T, ID> implements BaseDao<T, ID> {

    private final EntityPath<T> path;
    private final PathBuilder<T> builder;
    private final Querydsl querydsl;

From source file org.appverse.web.framework.backend.core.persistence.jpa.repository.JPAWithNativeApiAccessRepositoryImpl.java

/**
 * {@link JPAWithNativeApiAccessRepository} implementation.
 */
@Repository
public class JPAWithNativeApiAccessRepositoryImpl<T, ID extends Serializable> extends SimpleJpaRepository<T, ID>
        implements JPAWithNativeApiAccessRepository<T, ID> {

From source file com.google.code.guice.repository.SimpleBatchStoreJpaRepository.java

/**
 * Implementation of Repository with batch save support. It's a default implementation for all JPA repositories based
 * on
 * guice-repository. This class constructed by Guice with <a href="http://code.google.com/p/google-guice/wiki/AssistedInject">assisted-inject</a>
 * extension - it's possible to bind {@link MethodInterceptor} for this class/extensions.
 *

From source file org.oncoblocks.centromere.jpa.CentromereJpaRepository.java

/**
 * @author woemler
 */
public class CentromereJpaRepository<T extends Model<ID>, ID extends Serializable>
        extends SimpleJpaRepository<T, ID> implements RepositoryOperations<T, ID> {

From source file com.wiiyaya.framework.provider.repository.revision.BaseRevisionDaoImpl.java

public class BaseRevisionDaoImpl<T, ID extends Serializable, N extends Number & Comparable<N>>
        extends SimpleJpaRepository<T, ID> implements BaseRevisionDao<T, ID, N> {

    private final EntityInformation<T, ?> entityInformation;
    private final RevisionEntityInformation revisionEntityInformation;
    private final EntityManager entityManager;

From source file net.sf.gazpachoquest.repository.support.GenericRepositoryImpl.java

@NoRepositoryBean
public class GenericRepositoryImpl<T extends Persistable> extends SimpleJpaRepository<T, Integer>
        implements GenericRepository<T> {

    private ByExampleSpecification byExampleSpecification;
    private final EntityManager em;

From source file com.daphne.es.common.repository.support.SimpleBaseRepository.java

/**
 * <p>Custom Repository </p>
 * <p>User: Zhang Kaitao
 * <p>Date: 13-1-15 ?7:33
 * <p>Version: 1.0
 */

From source file pl.konczak.mystartupapp.sharedkernel.enversRepository.EnversRevisionRepositoryImpl.java

/**
 * Repository implementation using Hibernate Envers to implement revision specific query methods.
 *
 * @author Oliver Gierke
 * @author Philipp Huegelmeyer
 * @author Michael Igler