spring-boot/spring-boot-samples/spring-boot-sample-data-cas...
Andy Wilkinson f7c8be1877 Apply java9 profile to JDK 10 (and later) as well as JDK 9
See gh-12028
2018-03-02 15:28:03 +00:00
..
src Polish 2017-12-12 11:57:30 +01:00
README.adoc Improve Cassandra sample README documentation 2016-12-27 12:56:22 -08:00
pom.xml Apply java9 profile to JDK 10 (and later) as well as JDK 9 2018-03-02 15:28:03 +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.