📘
Kotlin JDSL
Discord
en
en
  • Kotlin JDSL
  • JPQL with Kotlin JDSL
    • Statements
    • Entities
    • Paths
    • Expressions
    • Predicates
    • Sorts
    • Subqueries
    • Custom DSL
    • Spring supports
    • Migration 2.X to 3.X
  • Kotlin JDSL Roadmap
  • FAQ
    • How can I see the generated query?
    • How can I use Kotlin value class?
    • What is the difference between Kotlin JDSL and jOOQ and QueryDSL?
    • Why is there a support module that only has a nullable return type
Powered by GitBook
On this page
  • What is Kotlin JDSL?
  • Supports
  • JPQL

Was this helpful?

Edit on GitHub

Kotlin JDSL

Latest stable version: 3.5.5

What is Kotlin JDSL?

Kotlin JDSL is a Kotlin library that makes it easy to build a query without a generated metamodel. There are many libraries that use an annotation processing tool (APT) to do the job. However, with the APT, you have to recompile whenever the name or type of field in an entity or a table class is changed. Kotlin JDSL provides a domain-specific language (DSL) based on KClass and KProperty to help you easily build queries without such inconveniences from the APT.

Kotlin JDSL does not provide an executor or a wrapper class as it is designed to help you build and execute queries with the library you are using.

Supports

JPQL

val context = JpqlRenderContext()

val query = jpql {
    select(
        path(Author::authorId),
    ).from(
        entity(Author::class),
        join(BookAuthor::class).on(path(Author::authorId).equal(path(BookAuthor::authorId))),
    ).groupBy(
        path(Author::authorId),
    ).orderBy(
        count(Author::authorId).desc(),
    )
}

val `the most prolific author` = entityManager.createQuery(query, context).apply {
    maxResults = 1
}
NextJPQL with Kotlin JDSL

Last updated 2 months ago

Was this helpful?

See for more information on JPQL.

here