jOOQ

jOOQ Tips: Implementing a Read-Only One-to-Many Relationship

This blog post describes how we can implement a one-to-many relationship when we are querying data from the database with jOOQ. After we have finished this blog post, we: Can get the required dependencies with Maven and Gradle. Can get the required information from the database by using only one database query. Understand how we […] Read more

High-Performance Java Persistence by Vlad Mihalcea

Hi Vlad, Tell me a little bit about yourself. Hi, Petri. My name is Vlad Mihalcea, and I work as a Developer Advocate for the Hibernate project. A lot of people might know because of your job as a Hibernate developer advocate, but I know that you have been interested in writing robust data access […] Read more

The Best Comments of February 2016

I think that the best part of writing a blog is to get comments from my readers. Because I have learned a lot from my readers, I want to “reward” the best comments, help you to learn new things, and (hopefully) encourage people to leave more comments. The rules are simple: I select X best […] Read more

10 Most Popular Blog Posts of 2014

The year 2014 is almost over, and this means that it is time to publish the most popular blog posts that I wrote during this year. I selected these blog posts by using Google Analytics. I selected all blog posts that were published during 2014 and picked the blog posts that had the most page […] Read more

Using jOOQ With Spring: Sorting and Pagination

JOOQ is a library which helps us to get in control of our SQL. It can generate code from our database and help us to build typesafe database queries by using its fluent API. The earlier parts of this tutorial have taught us how we can configure the application context of our application, generate code […] Read more

Using jOOQ With Spring: CRUD

jOOQ is a library which helps us to get back in control of our SQL. It can generate code from our database and help us to build typesafe database queries by using its fluent API. The earlier parts of my jOOQ tutorial have taught us how we can configure the application context of our example […] Read more