Package org.springframework.cassandra.config.java

Source Code of org.springframework.cassandra.config.java.AbstractCqlTemplateConfiguration

package org.springframework.cassandra.config.java;

import org.springframework.cassandra.core.CqlTemplate;
import org.springframework.context.annotation.Bean;

public abstract class AbstractCqlTemplateConfiguration extends AbstractSessionConfiguration {

  @Bean
  public CqlTemplate cqlTemplate() throws Exception {
    return new CqlTemplate(session().getObject());
  }
}
TOP

Related Classes of org.springframework.cassandra.config.java.AbstractCqlTemplateConfiguration

TOP
Copyright © 2018 www.massapi.com. 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.