Available in versions: Dev (3.21) | Latest (3.20) | 3.19 | 3.18 | 3.17 | 3.16 | 3.15 | 3.14 | 3.13 | 3.12 | 3.11
Generated sequences
Supported by ✅ Open Source Edition ✅ Express Edition ✅ Professional Edition ✅ Enterprise Edition
                                        Every sequence in your database will generate a org.jooq.Sequence implementation that looks like this:
                                    
public final class Sequences {
    // Every sequence generates a member
    public static final Sequence<Integer> S_AUTHOR_ID = new SequenceImpl<Integer>("S_AUTHOR_ID", TEST, INTEGER);
}
<configuration>
  <generator>
    <generate>
      <!-- Generate the Sequences class -->
      <sequences>true</sequences>
    </generate>
  </generator>
</configuration>
See the configuration XSD, standalone code generation, and maven code generation for more details.
new org.jooq.meta.jaxb.Configuration()
  .withGenerator(
    new Generate()
      // Generate the Sequences class
      .withSequences(true)
  )
See the configuration XSD and programmatic code generation for more details.
import org.jooq.meta.jaxb.*
configuration {
  generator {
    generate {
      // Generate the Sequences class
      isSequences = true
    }
  }
}
See the configuration XSD and gradle code generation for more details.
configuration {
  generator {
    generate {
      // Generate the Sequences class
      sequences = true
    }
  }
}
See the configuration XSD and gradle code generation for more details.
// The jOOQ-codegen-gradle plugin has been introduced in version 3.19. // Please use the official plugin instead of the third party plugin that was recommended before.
        
Feedback
Do you have any feedback about this page? We'd love to hear it!