A Qute Way to Visualise Data with Panache

In this blog post I’ll show you how develop a Quarkus application to easily access your relational database (using Hibernate ORM with Panache) and display its content in HTML with Qute templates. To break it into more details, in this blog post you will learn: What is Hibernate ORM with Panache? How to access a relational database with Hibernate ORM with Panache. What are Qute templates? How to display the … Continue reading A Qute Way to Visualise Data with Panache

How to get the JPQL/SQL String From a CriteriaQuery in JPA ?

I.T. is full of complex things that should (and sometimes could) be simple. Getting the JQPL/SQL String representation for a JPA 2.0 CriteriaQuery is one of them. By now you all know the JPA 2.0 Criteria API : a type safe way to write a JQPL query. This API is clever in the way that you don’t use Strings to build your query, but is quite … Continue reading How to get the JPQL/SQL String From a CriteriaQuery in JPA ?