I am evaluating JOOQ for use in a new system that is still under development. I would like to avoid code generation when the database is developed together with the application and just acts as a permanent storage for this application. Thus, it is expected that the definition of the database schema will be determined by Java code (table definitions in java).
Does the JOOQ match the above use case? Is there a DSL for schema definition?
source share