@Bean
public CassandraCqlSessionFactoryBean session() throws Exception {
Cluster cluster = cluster().getObject();
CassandraCqlSessionFactoryBean bean = new CassandraCqlSessionFactoryBean();
bean.setCluster(cluster);
bean.setKeyspaceName(getKeyspaceName());
return bean;
}