Hibernate Tips: How to Customize a Constructor Expression for Different Subclasses


Take your skills to the next level!

The Persistence Hub is the place to be for every Java developer. It gives you access to all my premium video courses, monthly Java Persistence News, monthly coding problems, and regular expert sessions.


Hibernate Tips is a series of posts in which I describe a quick and easy solution for common Hibernate questions. If you have a question for a future Hibernate Tip, please post a comment below.

Question:

Last week, one of my coaching clients asked an interesting question:

He used the InheritanceType.SINGLE_TABLE to map an inheritance hierarchy to one database table. In one of his queries, he wanted to return the same DTO projection for different subentities of the hierarchy. Depending on the subentity class, he wanted to initialize different properties of the DTO object.

The question was: How do you implement a query that adapts the constructor call to different subentities?

Solution:

To be honest, the definition of the query was more complex than I expected. I first thought that I just needed to implement 2 different constructors and then use a CASE expression with JPQL‘s TYPE function to distinguish between the 2 subclasses.

But unfortunately, the combination of CASE expression, TYPE function, and constructor expression caused a strange error message with Hibernate 5.4.

In the end, I had to implement one constructor with parameters for all properties of the DTO and use a CASE expression for each property that wasn’t mapped by the superclass.

Let’s take a look at a simplified example, as I obviously can’t share any client’s code.

Entities and DTO

I created a small inheritance hierarchy consisting of a Publication as the superclass and the subclasses Book and BlogPost.

And I will use the PublicationPresentationValue class as the projection of my query. As you can see in the diagram, the constructor expects 4 parameters with the values for the id, title, numPages and url properties. Id and title are mapped by the Publication entity and will be set for all PublicationPresentationValue objects. The numPages property is specific for Book entities and will be null for all BlogPosts. The url property will only be set for publications of type BlogPost.

Subentity-specific constructor calls in JPQL

As I explained at the beginning of this Hibernate Tip, the combination of CASE expression, TYPE function, and constructor expression didn’t work with Hibernate 5.4. I had to use a constructor with parameters for all properties of the DTO instead. You can see the query here.

TypedQuery<PublicationPresentationValue> q = em.createQuery(
	"SELECT new org.thoughts.on.java.model.PublicationPresentationValue(p.id, p.title, "
		+ "CASE TYPE(p) WHEN Book THEN TREAT(p as Book).numPages ELSE NULL END , "
		+ "CASE TYPE(p) WHEN BlogPost THEN TREAT(p as BlogPost).url ELSE NULL END )"
	+ "FROM Author a JOIN a.publications p WHERE a.id = :id", PublicationPresentationValue.class);
q.setParameter("id", 1L);
List<PublicationPresentationValue> values = q.getResultList();

The query starts with a simple constructor expression that tells Hibernate to instantiate a PublicationPresentationValue object for each record. The interesting parts are the following lines of the query.

Line 2 starts with a CASE expression that I use to determine the 3rd constructor parameter. A CASE expression is similar to an if clause in Java. It evaluates a when_clause, which in this query is TYPE(p). The TYPE function returns the type of the selected entity. In this example, that’s either a Book or a BlogPost. If it’s a Book, I call the TREAT function to cast p to a Book entity and reference the numPages attribute. BlogPost entities don’t have a numPages attribute, and I return null instead.

Line 3 is very similar to the previous one. This time, I either want to return the url attribute of a BlogPost entity or null, if it’s a Book entity. So, I again use the TYPE function to get the class of the current entity and the TREAT function to cast it to a BlogPost entity.

As you can see, even so, JPQL is not as powerful as SQL, it still enables you to create quite complex queries. If you run this query and activate the SQL statement logging, you can see that Hibernate generates the following SQL statement.

18:55:20,810 DEBUG [org.hibernate.SQL] - 
    select
        publicatio2_.id as col_0_0_,
        publicatio2_.title as col_1_0_,
        case publicatio2_.DTYPE 
            when 'Book' then publicatio2_.numPages 
            else null 
        end as col_2_0_,
        case publicatio2_.DTYPE 
            when 'BlogPost' then publicatio2_.url 
            else null 
        end as col_3_0_ 
    from
        Author author0_ 
    inner join
        PublicationAuthor publicatio1_ 
            on author0_.id=publicatio1_.authorId 
    inner join
        Publication publicatio2_ 
            on publicatio1_.publicationId=publicatio2_.id 
            and publicatio2_.DTYPE in (
                'Book',
            'BlogPost') 
        where
            author0_.id=?

Learn more:

If you liked this article, you might also be interested in:

Hibernate Tips Book

Get more recipes like this one in my new book Hibernate Tips: More than 70 solutions to common Hibernate problems.

It gives you more than 70 ready-to-use recipes for topics like basic and advanced mappings, logging, Java 8 support, caching, and statically and dynamically defined queries.

Get it now!

2 Comments

  1. Avatar photo Binh Thanh Nguyen says:

    Thanks, nice tips

    1. Avatar photo Thorben Janssen says:

      Thanks 🙂

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.