jooq-patterns

Installation
SKILL.md

JOOQ Database Patterns

Repository Structure

@Repository
class EnvironmentRepository(
    private val dsl: DSLContext
) {

    fun findById(id: UUID): Environment? =
        dsl.selectFrom(ENVIRONMENT)
            .where(ENVIRONMENT.ID.eq(id))
            .fetchOne()
            ?.toEntity()
Installs
40
GitHub Stars
5
First Seen
Jan 20, 2026
jooq-patterns — ashchupliak/dream-team