A Simple React.JS extension mechanism by Romain Manni-Bucau, 2021-06-02

React.JS is a great SPA library but extending SPA is always a challenge. Let see one proposal to do it easily.

How to correctly use RequestContextController by Romain Manni-Bucau, 2021-05-18

CDI 2.0 enables you to start/stop request scope using RequestContextController but take care its usage is not natural. Let’s see how to use it right.

Wire websocket events to CDI event bus by Romain Manni-Bucau, 2021-05-11

Websocket gives the opportunity to get an even based stream, it is possible to wire it to your IoC/CDI event bus for the best, let see how to do it.

Tomcat Meecrowave Websocket getting started by Romain Manni-Bucau, 2021-05-06

Apache Meecrowave is an Apache Tomcat and therefore can use websockets. Let see how to get started and some tips about it.

Setup an OAuth2 PKCE flow for a React.JS application by Romain Manni-Bucau, 2021-04-20

OAuth2 PKCE flow is intended for web application. It makes the authentication flow more secure and does not require client secret (which must stay secret so not hit the client). Let see how to set it up in a React.JS application.