Releases: jklingsporn/vertx-jooq
Releases · jklingsporn/vertx-jooq
v2.4.0
- Bugfixes
- Improvements
- Update vertx to 3.5 and jooq to 3.10.1 #25
In addition, the internal dependency to rxjava has also been switched to rxjava2. - Change the syntax of the JSON keys #23
The JSON keys of the generated POJOs now defaults to the column name in the database. The reason behind this is descibed here in detail. To be compatible with previous releases one can overwrite theVertxGeneratorStrategy#getJsonKeyName
method like so:
- Update vertx to 3.5 and jooq to 3.10.1 #25
public String getJsonKeyName(TypedElementDefinition<?> column){
return getJavaMemberName(column, DefaultGeneratorStrategy.Mode.POJO);
}