Simplify examples by adopting Spring Boot 1.4 improvements. Upgrade Cassandra Java driver to 3.0.3. Add examples for Ingalls (Query derivation, projection, Java 8 feature support). Cassandra example setup is now self-contained by requiring just a running Cassandra instance. Keyspace and tables are created during the tests. Examples also check if Cassandra is running and some examples additionally check the required version. Test execution is skipped if conditions are not met. Cassandra (2.x) is started with TravisCI.
20 lines
440 B
Markdown
20 lines
440 B
Markdown
# Spring Data Cassandra Example Application
|
|
|
|
## Preparation
|
|
|
|
### Install Cassandra
|
|
Before we can start we have to install Cassandra, e.g. via brew on Max OS.
|
|
```
|
|
brew install cassandra
|
|
|
|
More details can be found here: https://wiki.apache.org/cassandra/GettingStarted
|
|
```
|
|
|
|
### Start Cassandra
|
|
```
|
|
/usr/local/bin/cassandra -f
|
|
```
|
|
|
|
That should be enough to get you started.
|
|
Now you can simply type ```mvn clean install``` to run the example.
|