Package org.springframework.data.cassandra.config.java

Source Code of org.springframework.data.cassandra.config.java.AbstractCassandraConfiguration

/*
* Copyright 2013-2014 the original author or authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.cassandra.config.java;

import org.springframework.beans.factory.BeanClassLoaderAware;
import org.springframework.cassandra.config.java.AbstractClusterConfiguration;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.cassandra.config.CassandraSessionFactoryBean;
import org.springframework.data.cassandra.config.CassandraEntityClassScanner;
import org.springframework.data.cassandra.config.SchemaAction;
import org.springframework.data.cassandra.convert.CassandraConverter;
import org.springframework.data.cassandra.convert.MappingCassandraConverter;
import org.springframework.data.cassandra.core.CassandraAdminOperations;
import org.springframework.data.cassandra.core.CassandraAdminTemplate;
import org.springframework.data.cassandra.mapping.CassandraMappingContext;
import org.springframework.data.cassandra.mapping.BasicCassandraMappingContext;
import org.springframework.data.cassandra.mapping.Table;
import org.springframework.data.mapping.context.MappingContext;

/**
* Base class for Spring Data Cassandra configuration using JavaConfig.
*
* @author Alex Shvid
* @author Matthew T. Adams
*/
@Configuration
public abstract class AbstractCassandraConfiguration extends AbstractClusterConfiguration implements
    BeanClassLoaderAware {

  protected abstract String getKeyspaceName();

  protected ClassLoader beanClassLoader;

  /**
   * The {@link SchemaAction} to perform. Defaults to {@link SchemaAction#NONE}.
   */
  public SchemaAction getSchemaAction() {
    return SchemaAction.NONE;
  }

  /**
   * The base packages to scan for entities annotated with {@link Table} annotations. By default, returns the package
   * name of {@literal this} (<code>this.getClass().getPackage().getName()</code>). This method must never return null.
   */
  public String[] getEntityBasePackages() {
    return new String[] { getClass().getPackage().getName() };
  }

  @Bean
  public CassandraSessionFactoryBean session() throws Exception {

    CassandraSessionFactoryBean bean = new CassandraSessionFactoryBean();

    bean.setCluster(cluster().getObject());
    bean.setConverter(cassandraConverter());
    bean.setSchemaAction(getSchemaAction());
    bean.setKeyspaceName(getKeyspaceName());
    bean.setStartupScripts(getStartupScripts());
    bean.setShutdownScripts(getShutdownScripts());

    return bean;
  }

  /**
   * Creates a {@link CassandraAdminTemplate}.
   *
   * @throws Exception
   */
  @Bean
  public CassandraAdminOperations cassandraTemplate() throws Exception {
    return new CassandraAdminTemplate(session().getObject(), cassandraConverter());
  }

  /**
   * Return the {@link MappingContext} instance to map Entities to properties.
   *
   * @throws ClassNotFoundException
   */
  @Bean
  public CassandraMappingContext cassandraMapping() throws ClassNotFoundException {

    BasicCassandraMappingContext bean = new BasicCassandraMappingContext();
    bean.setInitialEntitySet(CassandraEntityClassScanner.scan(getEntityBasePackages()));
    bean.setBeanClassLoader(beanClassLoader);

    return bean;
  }

  /**
   * Return the {@link CassandraConverter} instance to convert Rows to Objects, Objects to BuiltStatements
   */
  @Bean
  public CassandraConverter cassandraConverter() throws Exception {
    return new MappingCassandraConverter(cassandraMapping());
  }

  @Override
  public void setBeanClassLoader(ClassLoader classLoader) {
    this.beanClassLoader = classLoader;
  }
}
TOP

Related Classes of org.springframework.data.cassandra.config.java.AbstractCassandraConfiguration

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.