j

jcql

JCQL is a tool allowing to generate boilerplate java code from existing cassandra schema. It is intended to be used with Cassandra 2.1+ due to support of UDTs (User Defined Types)/Tuples/Collections. Cassandra's UDTs/Tuples/Collections and an ability to introspect schema through java driver make it possible to automatically generate POJOs and corresponding mappers between database and java models. Properly generated java code saves development efforts and is less error-prone compared to hand coding. Accompanied with proper CI and deployment it can also guarantee consistency between database and java models at any point of application lifecycle from development to production rollout. JCQL does not rely on java reflection or annotations which means all discrepancies between actual cassandra schema and what client code expects it to be will be identified during compilation not at runtime in the middle of the night right after production release. No need to worry about Cassandra client code performance implications due to use of reflection.
http://github.com/trebogeer/j-cql
Apache License, Version 2.0
Dmitry Vasilyev
Files download
File Operation
jcql-0.8.7.jar download
jcql-0.8.7.pom download
jcql-0.8.7-sources.jar download
Apache Maven
<dependency>
  <groupId>com.trebogeer.jcql</groupId>
  <artifactId>jcql</artifactId>
  <version>0.8.7</version>
</dependency>
Gradle Groovy
implementation 'com.trebogeer.jcql:jcql:0.8.7'
Gradle Kotlin
implementation("com.trebogeer.jcql:jcql:0.8.7")
Scala SBT
libraryDependencies += "com.trebogeer.jcql" % "jcql" % "0.8.7"
Groovy Grape
@Grapes(
  @Grab(group='com.trebogeer.jcql', module='jcql', version='0.8.7')
)
Apache Ivy
<dependency org="com.trebogeer.jcql" name="jcql" rev="0.8.7" />
Leiningen
[com.trebogeer.jcql/jcql "0.8.7"]
Apache Buildr
'com.trebogeer.jcql:jcql:jar:0.8.7'