It looks like your cassandra server is not working. Make sure that the server is running through the task manager or telnet 127.0.0.1 9160
If you get the lower cassandra, it does not work:
telnet: Unable to connect to remote host: Connection refused
As for the jdbc library, 1st tip, use the DataStax driver (you can just add the maven dependency ), second part of the tip ... use maven for jdbc too. Add the dependency to the maven project, and then use the codepage on the wiki .
Dependence:
<dependency> <groupId>org.apache-extras.cassandra-jdbc</groupId> <artifactId>cassandra-jdbc</artifactId> <version>1.2.5</version> </dependency>
source share