Extend JUnit Part 2: JUnit 5 by Romain Manni-Bucau, 2018-01-10

JUnit 5 is out since some months and start to really be usable. It is as poswerful as JUnit 4 but its extension API completely changed. Let’s see how you can do the same now!

Extend JUnit Part 1: JUnit 4 by Romain Manni-Bucau, 2018-01-03

JUnit is the most popular java testing framework. Let see how its API allows you to extend it very easily and build your own testing stack!

Expose your local Maven repository through http with Meecrowave by Romain Manni-Bucau, 2017-12-13

Sometimes it is convenient to expose its local maven repository through http. Since Java developpers often already have a server locally, let’s see how to reuse it.

How to decorate a Java stream? by Romain Manni-Bucau, 2017-12-06

Java Streams are very powerful but when you use it a lot you can miss to be able to propagate a context from intermediate steps. This is actually not a strong lack since you can fill it quite simply. Let see how to do it!

Access JMX MBeans through Sirona webapp by Romain Manni-Bucau, 2017-11-22

Accessing JMX MBeans through a web port is a regular need. However it is not always trivial easy to find a solution. A simple way to do it is to use Sirona webapp which will activate JMX for the local machine by default and add some servlet security.