Package org.springframework.data.simpledb.core

Examples of org.springframework.data.simpledb.core.SimpleDbTemplate


public abstract class AbstractSimpleDBConfiguration {


  @Bean
  public SimpleDbTemplate simpleDBTemplate(){
        return new SimpleDbTemplate(simpleDb());
    }
View Full Code Here


public class SimpleDbRepositoryFactory extends RepositoryFactorySupport {

  private SimpleDbOperations simpleDbOperations;

  public SimpleDbRepositoryFactory(SimpleDbOperations simpleDbOperations) {
    this.simpleDbOperations = new SimpleDbTemplate(simpleDbOperations.getSimpleDb());

  }
View Full Code Here

TOP

Related Classes of org.springframework.data.simpledb.core.SimpleDbTemplate

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.