Blog Page 27/44
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.
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!