This plugin is an extension to jOOQ's code generation plugin that lets you define the user model (Forced types) from a type-safe .kts (Kotlin script) file.
To use this plugin, just replace jOOQ's groupId, artifactId and version. You can leave all other configuration untouched.
Here is a basic example:
<plugin>
<groupId>io.github.osguima3.jooqdsl</groupId>
<artifactId>jooqdsl-maven-plugin</artifactId>
<version>${jooqdsl.version}</version>
<executions>
<execution>
<id>generate-jooq</id>
<goals>
<goal>generate-jooq</goal>
</goals>
</execution>
</executions>
<configuration>
<jdbc>
<driver>org.postgresql.Driver</driver>
<user>my_user</user>
<password>my_password</password>
</jdbc>
<generator>
<generate>
<routines>false</routines>
<pojos>false</pojos>
<fluentSetters>true</fluentSetters>
<javaTimeTypes>true</javaTimeTypes>
</generate>
<database>
<name>org.jooq.meta.postgres.PostgresDatabase</name>
<inputSchema>public</inputSchema>
<includes>public.*</includes>
<recordVersionFields>version</recordVersionFields>
</database>
<target>
<packageName>org.example.project.model</packageName>
</target>
</generator>
</configuration>
</plugin>Additionally, you will need to add a dependency to the definition model, like so:
<dependency>
<groupId>io.github.osguima3.jooqdsl</groupId>
<artifactId>jooqdsl-model</artifactId>
<version>${jooqdsl.version}</version>
</dependency>The main advantage over jOOQ's plugin is the way ForcedTypes can be defined:
ModelDefinition {
tables {
table("customer") {
field("id", CustomerId::class) // customer.id will be converted to CustomerId
field("string", CustomerName::class)
field("registration", CustomerRegistrationTime::class)
field("wallet_amount", CustomerWalletAmount::class)
// Has CustomerRegistrationStatus in java/kotlin, String type in the database
field("registration_status") { enum(CustomerRegistrationStatus::class, databaseType = "String") }
// Custom field conversion
field("address") { custom(converter = CustomerAddressConverter::class) }
}
}
}Thanks to Kotlin's type safety, it will verify that the classes you use exist and that custom converters implement the necessary interfaces.
The plugin also provides default converter implementations for types like java.time.Instant or value objects (POJOs with a single field), popularly used in Domain-Driven Design.
It also provides a simplified interface to define custom converters, using type reification to infer the fromType and toType fields required in jOOQ's Converter so you don't need to add them.
This plugin also integrates with Test containers, which starts a small docker container with the needed database implementation, which can run migration scripts before executing jOOQ's generator.
This is a sample setup for postgres:
<plugin>
<!-- ... -->
<dependencies>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-postgresql</artifactId>
<version>2.0.3</version>
</dependency>
</dependencies>
<configuration>
<container>
<provider>org.testcontainers.postgresql.PostgreSQLContainerProvider</provider>
<version>16.11</version>
<migrationPath>src/main/resources/db/migration</migrationPath>
</container>
<!-- ... -->
</configuration>
</plugin>This project is licensed under the Apache License