Top "Spring-data-cassandra" questions

Spring Data for Cassandra is part of Spring Data project which provides a familiar and consistent Spring-based programming model for new datastores while retaining store-specific features and capabilities.

How to shut down a Spring Boot command-line application

I am building a Command Line java application using Spring Boot to get it working quickly. The application loads different …

java spring spring-boot spring-data-cassandra
Create keyspace, table and generate tables dynamically using Spring Data Cassandra

Using Cassandra, I want to create keyspace and tables dynamically using Spring Boot application. I am using Java based configuration. …

java spring-boot cassandra spring-data-cassandra
Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException

I am working on a spring boot application. After trying many solutions, it's not getting resolved.Please help: Console: org.…

java spring-boot spring-data-cassandra
spring boot data cassandra reactive JmxReporter problem

I updated my project to spring-boot Version 2.1.0.RELEASE. Now i get the following error: Caused by: org.springframework.beans.BeanInstantiationException: …

spring spring-boot spring-data-cassandra
How to insert java.util.Date values into Cassandra date type column using Spring Data Cassandra?

I have cassandra table with a date type column as follows: create table people ( id int primary key, name text, …

java spring spring-boot cassandra spring-data-cassandra
IN clause with Spring Data and Cassandra @Query

I'm trying to query a Cassandra table using the IN clause and the @Query annotation from Spring Data. I have …

java spring cassandra spring-data spring-data-cassandra
Spring boot cassandra integration @EnableCassandraRepositories not generating implementation for Cassandra Repository

I am trying to integrate cassandra with Spring boot using spring-data-cassandra. Application.java package hello; import org.springframework.boot.autoconfigure.…

spring-boot spring-data-cassandra
batch size of prepared statement in spring data cassandra

I'm getting this warning in the log: WARN [Native-Transport-Requests:17058] 2014-07-29 13:58:33,776 BatchStatement.java (line 223) Batch of prepared statements for [keyspace.…

cassandra cassandra-2.0 spring-data-cassandra
Spring Boot Data Embedded Cassandra

In my Spring Boot 1.5.1 application I'm going to write unit/integration tests for Cassandra related logic. I have added folowing …

spring spring-boot cassandra spring-data-cassandra
How to initialize Cassandra keyspace and tables with Spring boot

I am using Cassandra as a datasource in my Spring boot application and would like to initialize the database before …

cassandra spring-boot spring-data-cassandra