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

Merry Chistmas And Happy Fallback With Microprofile

I first wrote this article for the Java Advent calendar 2020. I then copied it to my own blog. Christmas is coming! Like every year, Santa needs to schedule its presents delivery. Can you imagine? Millions of (good) children will receive a present on the night of the 24th of December. To achieve this prowess, Santa needs a bit of technical help to schedule the … Continue reading Merry Chistmas And Happy Fallback With Microprofile

Two Quarkus Books for Christmas

It’s been a while since I haven’t blogged… but that’s because I was busy writing two books on Quarkus! When Quarkus was announced in November 2018 I was very enthusiastic with what I saw. It was the beginning of Quarkus, but it was already promoting developer’s joy (hot reload, easy configuration, etc.), Cloud-Native, speed, small… but what I liked the most was the fact that … Continue reading Two Quarkus Books for Christmas

Configuring A Quarkus Application With Profiles

This blog post follows the first one I wrote about Configuring A Quarkus Application. So, if you want to know how to configure a Quarkus application using a Unified Configuration (application.properties file), Microprofile Config or system properties, please refer to this previous post. In this blog post I will show you how to use Profiles in Quarkus. Use Case I’ll use the same example as … Continue reading Configuring A Quarkus Application With Profiles

Configuring A Quarkus Application

In this blog post I’ll show you how to configure a Quarkus application using the specific application.properties file as well as the Microprofile Config API (check my other post for configuring with profiles). To break it into more details you will learn: How to configure a Quarkus application and have separate values for development and test How to use Microprofile Config to inject values How … Continue reading Configuring A Quarkus Application