Extensible classpath for a Jib based Docker imagesby Romain Manni-Bucau, 2019-05-29
Jib is an awesome solution to build container images from a Maven or Gradle build, but how to ensure its container is extensible with custom libraries? Let see how the solution can be simple!
Your first javaagentby Romain Manni-Bucau, 2019-05-22
The most generic way to instrument any JVM code is to write a javaagent. Let see how to do it and what it means.
CDI SE and JUnit 5 made easyby Romain Manni-Bucau, 2019-05-15
CDI SE API is an awesome companion for CDI to write custom "main" or tests, let see how OpenWebBeans made it more closely integrated to JUnit 5!
JavaEE is dead, long live to the javax package!by Romain Manni-Bucau, 2019-05-14
Oracle does not enable Eclipse to continue to use javax package for new API. Therefore, JakartaEE encounters its first challenge. Here are my thoughts on that.
Microprofile JWT Auth and Cookie?by Romain Manni-Bucau, 2019-05-08
Microprofile JWT Auth relies on Authorization header, does it mean it can’t be used with applications relying on a Cookie for their security? Let see where we are on that question.