Testing your blueprint camel routes by Romain Manni-Bucau, 2019-07-31

Camel is a great library but it also comes with a great tooling. Except the well known Standalone, CDI and Spring support, it comes with a blueprint test support module which greatly helps to test your routes without launching a full container.

Read a query parameter as Json with JAX-RS by Romain Manni-Bucau, 2019-07-24

Having JSON query parameters is more and more common in nowdays endpoints since it enable to link the frontend and the backend more natively. Of course for us, JAX-RS enables to do it transversally.

Get docker container metadata from an embed Java application by Romain Manni-Bucau, 2019-07-04

With the numerous docker containers we deploy and their needs in monitoring we regularly need to introspect the currently running instance to find its Id, Name, Image etc…​ Let see how to do it in Java in a few steps.

Integrate Okta Oauth2 authorization_code flow with your JAX-RS server by Romain Manni-Bucau, 2019-06-19

How to integrate Okta OAuth2 server with a JAX-RS/CDI stack? Let’s follow the guide!

How Apache Johnzon makes JSONP/JSONB a real option for configuration by Romain Manni-Bucau, 2019-06-01

I already explained how JSON-P and Johnzon mapper were options for configuration files. In the meantime JSON-B was released, let see how to use it the same way.