Spring Data Jpa

org.springframework.data.jpa.repository.support
Class JpaRepositoryFactoryBean<T extends JpaRepository<S,ID>,S,ID extends Serializable>

java.lang.Object
  extended by org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport<T,S,ID>
      extended by org.springframework.data.repository.core.support.TransactionalRepositoryFactoryBeanSupport<T,S,ID>
          extended by org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean<T,S,ID>
Type Parameters:
T - the type of the repository
All Implemented Interfaces:
BeanFactoryAware, FactoryBean<T>, InitializingBean, RepositoryFactoryInformation<S,ID>

public class JpaRepositoryFactoryBean<T extends JpaRepository<S,ID>,S,ID extends Serializable>
extends TransactionalRepositoryFactoryBeanSupport<T,S,ID>

Special adapter for Springs FactoryBean interface to allow easy setup of repository factories via Spring configuration.

Author:
Oliver Gierke, Eberhard Wolff

Constructor Summary
JpaRepositoryFactoryBean()
           
 
Method Summary
 void afterPropertiesSet()
           
protected  RepositoryFactorySupport createRepositoryFactory(javax.persistence.EntityManager entityManager)
          Returns a RepositoryFactorySupport.
protected  RepositoryFactorySupport doCreateRepositoryFactory()
           
 void setEntityManager(javax.persistence.EntityManager entityManager)
          The EntityManager to be used.
 
Methods inherited from class org.springframework.data.repository.core.support.TransactionalRepositoryFactoryBeanSupport
createRepositoryFactory, setBeanFactory, setTransactionManager
 
Methods inherited from class org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport
getEntityInformation, getObject, getObjectType, getRepositoryInterface, isSingleton, setCustomImplementation, setNamedQueries, setQueryLookupStrategyKey, setRepositoryInterface
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

JpaRepositoryFactoryBean

public JpaRepositoryFactoryBean()
Method Detail

setEntityManager

public void setEntityManager(javax.persistence.EntityManager entityManager)
The EntityManager to be used.

Parameters:
entityManager - the entityManager to set

doCreateRepositoryFactory

protected RepositoryFactorySupport doCreateRepositoryFactory()
Specified by:
doCreateRepositoryFactory in class TransactionalRepositoryFactoryBeanSupport<T extends JpaRepository<S,ID>,S,ID extends Serializable>

createRepositoryFactory

protected RepositoryFactorySupport createRepositoryFactory(javax.persistence.EntityManager entityManager)
Returns a RepositoryFactorySupport.

Parameters:
entityManager -
Returns:

afterPropertiesSet

public void afterPropertiesSet()
Specified by:
afterPropertiesSet in interface InitializingBean
Overrides:
afterPropertiesSet in class RepositoryFactoryBeanSupport<T extends JpaRepository<S,ID>,S,ID extends Serializable>

Spring Data Jpa

Copyright © 2011-2012 SpringSource. All Rights Reserved.