Redirect CXF JAX-RS endpoints through javax WebSockets by Romain Manni-Bucau, 2017-11-15

Let see how to bridge your CXF JAX-RS endpoint over your javax Websocket server!

Apache Beam and JSR233 support or how to inject java transforms! by Romain Manni-Bucau, 2017-11-03

Apache Beam is an abstraction to execute big data processes but it misses a way to make change some logic without recompile the pipeline. Using the JSR 223 you can make it easily…​.even relying on java script :).

Control @RequestScoped with CDI 2.0 by Romain Manni-Bucau, 2017-10-11

CDI @RequestScoped context is often used as a thread related context. However there are several environments where it is not defined and therefore not active/usable. Let see how CDI 2.0 allows you to still use the request context in any environment.

Bye bye Openshift and hello Metawerx! by Romain Manni-Bucau, 2017-09-21

After about 1 year of Openshift hosting and after recent Openshift structural changes, this blog is now on Metawerx. Here are the details about that story.

CDI interceptors and asynchronous operations by Romain Manni-Bucau, 2017-09-05

CDI interceptors are a great way to enrich some beans with more or less complicated logic without polluting the business code. However with modern reactive programming you need different strategies to code them properly. Let’s dig into it a bit!