Skip to content
Advertisement

Is it possibe to map a query with nested select statements to a DTO?

I have a query with nested select

JavaScript

There is a DTO Class

JavaScript

The method of new packageName.Result(a,b) in the query wont work here because of nested select, so what can be done here? Thanks in advance

Advertisement

Answer

The JPQL constructor expression is really just syntax sugar, so you could just as well transform the resulting list afterwards.

JavaScript

I think this is a perfect use case for Blaze-Persistence Entity Views, especially if you have the need for more complex or nested DTOs.

I created the library to allow easy mapping between JPA models and custom interface or abstract class defined models, something like Spring Data Projections on steroids. The idea is that you define your target structure(domain model) the way you like and map attributes(getters) via JPQL expressions to the entity model.

A DTO model for your use case could look like the following with Blaze-Persistence Entity-Views:

JavaScript

Which will create the subquery just as you expect it. Depending on your subquery, you could also use this simpler variant

JavaScript

Which will produce a left join query like this:

JavaScript

Querying is a matter of applying the entity view to a query, the simplest being just a query by id.

Result a = entityViewManager.find(entityManager, Result.class, id);

The Spring Data integration allows you to use it almost like Spring Data Projections: https://persistence.blazebit.com/documentation/entity-view/manual/en_US/index.html#spring-data-features

JavaScript

The best part is, it will only fetch the state that is actually necessary!

Advertisement