spring-boot/spring-boot-samples/spring-boot-sample-data-cassandra
Andy Wilkinson 064f6478df Move back to JUnit 4 until SUREFIRE-1614 has been resolved
See gh-14736
See gh-14737
See gh-14738
2018-12-12 16:49:30 +00:00
..
src Move back to JUnit 4 until SUREFIRE-1614 has been resolved 2018-12-12 16:49:30 +00:00
pom.xml Exclude jcl-over-slf4j in favour of spring-jcl 2018-12-07 15:37:24 +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.