Apache Meecrowave: enable access log by Romain Manni-Bucau, 2021-02-23

If you are using or tested Apache Meecrowave you can wonder why you don’t see access log by default, this is because, to let you use the logging you want it is not on out of the box. Let see how to enable it.

GraalVM and logs with Yupiik LogManager: JUL and bindings (SLF4J, …​) by Romain Manni-Bucau, 2021-02-09

GraalVM native-image enables to convert a Java application to a native binary making it generally faster to start and using less memory. However, it still hits a common issue: logging framework handling. Let see how to solve it.

Maven Shade Plugin and CDI beans.xml by Romain Manni-Bucau, 2021-02-04

Maven Shade Plugin is a great plugin to have an "all in one" executable jar easily shareable, however when moving from a "multiple jars" to "single jar" model, some libraries need some tuning. Let’s dig into CDI beans.xml case.

[TIP] Mvnd module rolling window size by Romain Manni-Bucau, 2021-01-28

Mvnd brings a big boost to maven ecosystem but default logging can be hard to follow for real life project. Let see how to get more logs to get back the feedback you need from your build.

JSON-B and JPA, how to solve serialization loop issue by Romain Manni-Bucau, 2021-01-26

JPA and JSON-B are great technologies but how to avoid the well known Stackoverflow issue when using it? Read this post to see a solution!