Meecrowave and TomEE @ApacheCon NA 2017! by Romain Manni-Bucau, 2017-05-18

Today I was presenting at ApacheCon NA 2017 a talk about Tomcat and JavaEE servers at Apache Software Foundation. If you are interested in it, here how to grab the slides.

JAX-RS: enrich the response with headers outside your business code by Romain Manni-Bucau, 2017-05-09

In a previous post we saw how to validate the security with JAX-RS. It was mainly based on a request filter. Do you know the response has the same kind of control with JAX-RS >= 2?

Tomcat: rewrite your urls without any library! by Romain Manni-Bucau, 2017-05-02

It is common to have to remap some urls at deploy time to match environment constraints or new requirements. Let see how Tomcat allows to do it very quickly without much effort.

Hibernate: why my relationship doesn’t update? by Romain Manni-Bucau, 2017-04-25

Hibernate is probably the most used JPA implementation but has sometimes some surprising behavior. One I hit recently was the relationship update. If you don’t reuse the collection hibernate gives you it will not update the collection consistently.

Tomcat built-in concurrent limit solution! by Romain Manni-Bucau, 2017-04-18

You maybe don’t know if but since years Tomcat provides a concurrent limit implementation. Let see how to set it up!