Azul will only ever contact you from an @azul.com email address. We will never email you from any other domain. If you receive a message purporting to be from Azul from any other domain, it is not from us and may be an attempt at fraud. Please do not respond and report it to [email protected]

A Quick Guide To Dynamic Queries with Jakarta Persistence

To effectively express a query, it’s important to utilize a typesafe way that help you enhance readability and reduce runtime errors.

Our latest User Guide – available to download here – discusses how to use the Jakarta Persistence API (JPA) Criteria API to build dynamic entity queries programmatically.

Why Criteria API?

The Criteria API is one of the most common ways of constructing dynamic queries for entities and their persistent state.  A Criteria query typically follows this structure:

  • Obtain CriteriaBuilder
  • Create CriteriaQuery
  • Define roots
  • Construct Where clause
  • (Optional) Define OrderBy, GroupBy, Having clauses

In order to set up dynamic queries, all these elements need to be addressed. To learn how to use the Criteria API in your Jakarta EE applications, including how to create a query definition, utilise query roots, path expressions and various clauses, download a free copy of our guide now.