spring-boot/spring-boot-samples/spring-boot-sample-data-cassandra
2019-07-17 21:44:01 +01:00
..
src Update copyright header of changed files 2019-07-17 21:44:01 +01:00
pom.xml Next Development Version 2019-05-14 08:21:02 +00:00
README.adoc

= Spring Boot Sample Data Cassandra

To run the project, need to run below `cql` commands on Cassandra.

== Keyspace Creation in Cassandra
[source,indent=0]
----
	CREATE KEYSPACE mykeyspace WITH REPLICATION = { 'class' : 'SimpleStrategy', 'replication_factor' : 1 };
----

== Table Creation in Cassandra
Run `cql` using the  link:src/test/resources/setup.cql[setup script] located in resources folder.