CDI Extensions can share data! by Romain Manni-Bucau, 2017-01-26

CDI Extensions are still a bit scary but they are really powerful. Did you know they can share data?

[TIP] Synchronize two folders with bash by Romain Manni-Bucau, 2017-01-24

It is quite common to need to synchronize/watch two folders in development. There are a lot of solutions but a cheap one can be done with bash and doesn’t need anything else.

JAX-RS 2 Client: maintain the session between requests by Romain Manni-Bucau, 2017-01-19

JAX-RS 2 has a good client API but it doesn’t provide a solution to maintain the session out of the box. So how to do it?

CXF RequestDispatcherProvider: a taste of MVC specification today by Romain Manni-Bucau, 2017-01-17

MVC specification will bring a JAX-RS based MVC server framework to JavaEE 8. But if you already use CXF you can do more or less the same today based on RequestDispatcherProvider. Let’s see how fast it is!

Use Servlet Authentication from a JAAS LoginModule by Romain Manni-Bucau, 2017-01-10

JAAS and Servlet security API seems very decoupled…​but can’t we actually use Servlet API behind JAAS?