I use JOOQ with a PostgreSQL database. For the moment all the code generated by JOOQ is in the same Maven project. I would like to know if it is possible to separate the JOOQ code generation in two separate Maven modules: in a server module: JOOQ records and DAOs generation in a common module: generation of POJOs only. The
Tag: jooq-codegen-maven
Jooq forced type not being applied to column
I’m trying to use jOOQ with a postgres db featuring tsvectors. I added this to my configuration file : I’m trying to apply it to the ts_message_text column : But I get : Answer There should be an additional log message further up: It seems this message isn’t getting printed in jOOQ 3.15.3 in your particular case, though… Seems to
Unable to create records using custom generator strategy for getter names
I’m on jOOQ 3.13.1, dropwizard 2.0.7. To make jOOQ and dropwizard together, I am using (https://droptools.bendb.com/jooq/). I am using custom generation strategy to maintain camel case for my setters and getters. The names are coming in as expected. The record objects have data for their respective columns. However, I keep on getting errors from my database that I am trying