Put TomEE Embedded in a Docker container with Maven 2/2 by Romain Manni-Bucau, 2019-03-20

In previous post, we saw how to create a TomEE Embedded Microprofile application easily. In this post we will just use Jib Maven Plugin to bundle it in a Docker image.

Make TomEE Embedded microprofile ready in 1s! 1/2 by Romain Manni-Bucau, 2019-03-15

Apache TomEE 8 introduced a new Microprofile distribution that is great if you are still deploying in a server. But if you moved Docker or an equivalent technology, then it is not the best you can do. Let see how to also make TomEE Embedded Microprofle!

Use JSON-P with google-httpclient and drop jackson! by Romain Manni-Bucau, 2019-03-13

Google HTTP Client, a.k.a. com.google.http-client:google-http-client, uses jackson by default. If your stack already provide a JSON-P implementation which is not jackson or not the right version you can desire to align both. Here is how to do it.

Junit5, @CsvSource and escaping by Romain Manni-Bucau, 2019-03-06

JUnit 5 new parameterized test feature is very powerful but before paying the cost to write the dataset as a dedicated method you can wonder if you can’t inject any data using @CsvSource. In general it is possible, let see how to handle corner cases.

(J)Link your Java application before putting it into Docker! Part 3/3 by Romain Manni-Bucau, 2019-02-22

In the previous post we saw how to build a custom Java distribution, let’s see now how to bundle it in a Docker image…​with or without docker daemon!