Example usage for org.springframework.data.cassandra.config CassandraClusterFactoryBean CassandraClusterFactoryBean

List of usage examples for org.springframework.data.cassandra.config CassandraClusterFactoryBean CassandraClusterFactoryBean

Introduction

In this page you can find the example usage for org.springframework.data.cassandra.config CassandraClusterFactoryBean CassandraClusterFactoryBean.

Prototype

CassandraClusterFactoryBean

Source Link

Usage

From source file:com.poc.cassandra.CassandraConfig.java

@Bean
public CassandraClusterFactoryBean cluster() {

    CassandraClusterFactoryBean cluster = new CassandraClusterFactoryBean();
    cluster.setContactPoints(env.getProperty("cassandra.contactpoints"));
    cluster.setPort(Integer.parseInt(env.getProperty("cassandra.port")));

    return cluster;
}