I'm successfully generating jOOQ classes using the jooq-codegen-maven plugin together with the jooq meta hibernate extension.
The names of the generated classes and methods for tables/column are using the actual DB table and column names.
Is possible for the generation to use on the @Entity
class simple-name and the @Column
instance variables names instead the @Entity(name=TABLE)
and @Column(name=COLUMN)
?
To me it will be more intuitive to have the same names as the JPA classes when using jOOQ to create queries.
Thanks