Package org.springframework.data.repository.invoker

Examples of org.springframework.data.repository.invoker.DefaultRepositoryInvokerFactory


   * @see org.springframework.context.ApplicationContextAware#setApplicationContext(org.springframework.context.ApplicationContext)
   */
  public void setApplicationContext(ApplicationContext context) {

    this.repositories = new Repositories(context);
    this.repositoryInvokerFactory = new DefaultRepositoryInvokerFactory(repositories);
  }
View Full Code Here


   */
  public void setApplicationContext(ApplicationContext context) {

    this.repositories = new Repositories(context);
    this.conversionService.addConverter(this);
    this.repositoryInvokerFactory = new DefaultRepositoryInvokerFactory(repositories, conversionService);
  }
View Full Code Here

   * (non-Javadoc)
   * @see org.springframework.data.repository.init.RepositoryPopulator#initialize()
   */
  public void populate(Repositories repositories) {

    RepositoryInvokerFactory invokerFactory = new DefaultRepositoryInvokerFactory(repositories);

    for (Resource resource : resources) {

      LOGGER.info(String.format("Reading resource: %s", resource));

View Full Code Here

TOP

Related Classes of org.springframework.data.repository.invoker.DefaultRepositoryInvokerFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.