spring-boot/spring-boot-samples/spring-boot-sample-data-cas...
Phillip Webb f875b74e67 Reformat samples with spring-javaformat 0.0.8
See gh-16418
2019-04-02 19:39:23 -07:00
..
src Reformat samples with spring-javaformat 0.0.8 2019-04-02 19:39:23 -07:00
README.adoc Improve Cassandra sample README documentation 2016-12-27 12:56:22 -08:00
pom.xml Update build and setup configuration to use HTTPS 2019-03-19 16:58:31 +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.