The jOOQ User Manual : Code generation : Advanced generator configuration : Database : Synthetic identities | previous : next |
Synthetic identities
Applies to ✅ Open Source Edition ✅ Express Edition ✅ Professional Edition ✅ Enterprise Edition
jOOQ's code generator recognises identity columns if they are reported as such by the database. Some databases do not support "real" identity columns, but allow for emulating them, e.g. through triggers and sequences (e.g. Oracle prior to 12c). If a column is a known "identity" without formally being one, users can specify a regular expression that matches all columns (one column per table), which will be treated as if they were formal identities. For example:
<configuration xmlns="http://www.jooq.org/xsd/jooq-codegen-3.13.0.xsd"> <generator> <database> <syntheticIdentities>SCHEMA\.TABLE\.ID</syntheticIdentities> </database> </generator> </configuration>
new org.jooq.meta.jaxb.Configuration() .withGenerator(new Generator() .withDatabase(new Database() .withSyntheticIdentities("SCHEMA\\.TABLE\\.ID") ) )
myConfigurationName(sourceSets.main) { generator { database { syntheticIdentities = 'SCHEMA\\.TABLE\\.ID' } } }
As always, when regular expressions are used, they are regular expressions with default flags.
Feedback
Do you have any feedback about this page? We'd love to hear it!