How to remove table name prefixes in class names with jOOQ?
I’m using jooq-codegen
to generate Java classes from my database schemas, but I’m encountering an issue with table name prefixes. For instance, a table named t_user
ends up generating a class named TUser
when I would prefer it to be User
(without the ‘T’ prefix).