JOOQ (Java Object Oriented Querying) is a persistence framework that embraces SQL. JOOQ provides the following features:
Typesafe SQL using DSL API
Typesafe database object referencing using code generation
Easy-to-use API for querying and data fetching
SQL logging and debugging
This chapter covers using the Spring Boot JOOQ Starter, using the JOOQ Maven Codegen plugin to generate code from the database schema, and performing various types of database operations.
Introduction to JOOQ
JOOQ is a Java persistence framework that provides typesafe QueryDSL so that you can implement ...