Last week I received a project laptop update. From 2 CPU cores it went up to 4 cores. Also the rest of the equipment suggests that the build time should be reduced significantly. But build time did not change at all on the new laptop:
Devoxx UK Deep Dive: Streams and CompletableFutures
A few weeks ago I took part in the DevOxx UK Deep Dive Session Parallel and Asynchronous Programming with Streams and CompletableFuture hold by Venkat Subramaniam (@venkat_s). I did write a lot of notes. So here they are 😀
Spring Boot: Interupt free rolling deployments
Today I added graceful-shutdown capabilities to our Spring Boot Application. The Springboot-Graceful-Shutdown enables your spring boot application to do a rolling deployment without any downtime on Openshift.
Retry handling with Swagger API Client and Failsafe using Java 1.7
My customer uses a generated Swagger API Client to use a REST Server from a monolithic application. Unfortunatly the monolith is stuck on Java 1.7. I did find the FailSafe Framework which would do exactly what we needed. With the exception being that every example code was using lambdas 😀 So I had to work […]