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

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

Introduction

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

Usage

From source file org.mmonti.entitygraph.repository.CustomGenericJpaRepositoryFactory.java

/**
 * Sample implementation of a custom {@link JpaRepositoryFactory} to use a custom repository base class.
 * 
 * @author Oliver Gierke
 */
public class CustomGenericJpaRepositoryFactory extends JpaRepositoryFactory {

From source file name.marcelomorales.siqisiqi.openjpa.spring.OpenJpaRepositoryFactory.java

/**
 * @author Marcelo Morales
 *         Since: 9/18/13
 */
public class OpenJpaRepositoryFactory<T, I extends Serializable> extends JpaRepositoryFactory {

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

public class DefaultRepositoryFactory extends JpaRepositoryFactory {

    private final NamedQueryUtil namedQueryUtil;

    public DefaultRepositoryFactory(final EntityManager entityManager, final NamedQueryUtil namedQueryUtil) {
        super(entityManager);

From source file com.github.dactiv.orm.core.spring.data.jpa.factory.BasicJpaRepositoryFactory.java

/**
 * JPA specific generic repository factory.
 * 
 * @author maurice
 *
 */

From source file com.google.code.guice.repository.spi.CustomJpaRepositoryFactory.java

/**
 * Spring-data specifics - we need this because our "base" Repository implementation is not a {@link
 * SimpleJpaRepository}, but
 * Repository with batch-store support.
 *
 * @author Alexey Krylov

From source file com.luna.common.repository.support.SimpleBaseRepositoryFactoryBean.java

class SimpleBaseRepositoryFactory<M, ID extends Serializable> extends JpaRepositoryFactory {

    private EntityManager entityManager;

    public SimpleBaseRepositoryFactory(EntityManager entityManager) {
        super(entityManager);

From source file cn.guoyukun.spring.jpa.repository.support.SimpleBaseRepositoryFactoryBean.java

class SimpleBaseRepositoryFactory<M, ID extends Serializable> extends JpaRepositoryFactory {
    //
    private static final Logger LOG = LoggerFactory.getLogger(SimpleBaseRepositoryFactory.class);

    private EntityManager entityManager;