Java
-
Running Java Mission Control and Flight Recorder against WildFly and EAP
Java Mission Control (JMC) enables you to monitor and manage Java applications without introducing the performance overhead normally associated with these…
Read More » -
Thread local storage in Java
One of the rarely known features among developers is Thread-local storage. The idea is simple and need for it comes…
Read More » -
How and Why is Unsafe used in Java?
Overview sun.misc.Unsafe has been in Java from at least as far back as Java 1.4 (2004). In Java 9, Unsafe will…
Read More » -
Lightweight Integration with Java EE and Camel
Enterprise Java has different flavors and perspectives. Starting at the plain platform technology, which is well known as Java EE…
Read More » -
RabbitMQ – Processing messages serially using Spring integration Java DSL
If you ever have a need to process messages serially with RabbitMQ with a cluster of listeners processing the messages,…
Read More » -
Updates on CDI 2.0
CDI 2.0 is the next version of Contexts and Dependency Injection for the Java EE Platform and a candidate for…
Read More » -
Really Too Bad that Java 8 Doesn’t Have Iterable.stream()
This is one of the more interesting recent Stack Overflow questions: Why does Iterable not provide stream() and parallelStream() methods?…
Read More » -
Creating a REST API with Spring Boot and MongoDB
This year I greeted Christmas in a different fashion: I was a part of the Java Advent Calendar. Let’s boot…
Read More » -
5 ways to initialize lazy relations and when to use them
Lazy loading of relations between entities is a well established best practice in JPA. Its main goal is to retrieve…
Read More »