JAX-RS 2: server security filter by Romain Manni-Bucau, 2017-04-18

JAX-RS 2 added to the specification new components like request/response filters for the server and client. These ones are really helpful for all transversal concerns like the most famous one: the security. Let’s see how to see how to add Basic security.

JAX-RS and CXF: disable stacktraces on errors by Romain Manni-Bucau, 2017-04-11

CXF is a great JAX-RS provider but you can find it too verbose by default when a wrong request happens. Let’s see how to make it more silent!

Bridge JAX-RS and Camel CDI by Romain Manni-Bucau, 2017-04-04

Camel is a wonderful toolkit to build proxies or advanced integration chains. On another side JAX-RS is a great way to express an HTTP API (or REST API with some more work). Both can be integrated in various ways. Let explore one!

Apache TomEE and Apache Artemis by Romain Manni-Bucau, 2017-03-28

In a previous post I showed how to use Apache Artemis with Apache Meecrowave. Let see this time how to go further and integrate it with Apache TomEE and MDB/EJB.

Simple HTML Form by Romain Manni-Bucau, 2017-03-21

There are a lot of ways to secure your application but if you propose a UI it will likely start with a HTML form. Let’s see how to create a super trivial implementation using the plain javascript in the browser and JAX-RS for the backend.