You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spring-boot/spring-boot-samples/spring-boot-sample-data-cas...
Phillip Webb 5a4220c773 Fix logging checkstye violations in samples
See gh-14911
6 years ago
..
src Fix logging checkstye violations in samples 6 years ago
README.adoc Improve Cassandra sample README documentation 8 years ago
pom.xml Upgrade cassandra-unit-spring to 3.5.0.1 6 years ago

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.