DOC

com.trebogeer.jcql : jcql

Maven & Gradle

Mar 12, 2016
5 stars

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.

Table Of Contents

Latest Version

Download com.trebogeer.jcql : jcql Javadoc & API Documentation - Latest Versions:

All Versions

Download com.trebogeer.jcql : jcql Javadoc & API Documentation - All Versions:

Version Size Javadoc Updated
0.8.x

How to open Javadoc JAR file in web browser

  1. Rename the file jcql-0.8.7-javadoc.jar to jcql-0.8.7-javadoc.zip
  2. Use your favourite unzip tool (WinRAR / WinZIP) to extract it, now you have a folder jcql-0.8.7-javadoc
  3. Double click index.html will open the index page on your default web browser.

How to generate Javadoc from a source JAR?

Running the command javadoc:

javadoc --ignore-source-errors -encoding UTF-8 -sourcepath "jcql-0.8.7-sources.jar" -d "jcql-0.8.7-javadoc" -subpackages 

Advertisement