CDI Messaging Example by Romain Manni-Bucau, 2022-08-18

Messaging is more and more used in our applications. You probably saw Kafka or Pulsar popping up. But it has some challenges at dev and maintenance time so let see how we can integrate it in a CDI application.

A simple bash CLI structure for your automotion by Romain Manni-Bucau, 2022-04-09

We tend to write several scripts to automate repetitive tasks. Let see how to use a simple structure to ease that task.

Kubernetes Quick Debugging Pod by Romain Manni-Bucau, 2022-04-05

Being able to get a temporary pod with debugging tools is quite important but not always trivial. Let’s see the main option ot get it quickly.

Docker Compose Java Healthcheck by Romain Manni-Bucau, 2022-02-23

Docker-compose is still a valid local option to run docker images. However it does not support HTTP probe as Kubernetes. Let see how to solve it for Java applications.

Java Logging Framework by Romain Manni-Bucau, 2021-12-13

I got an interesting exchange on twitter about Java logging framework and I think this topic is worth a post since it is not as abvious as it can look like.