Recent Posts

Run a Java Lambda Function From a Docker image

Author: Charl Fasching Original post on Foojay: Read More Have you ever wanted to deploy a Java Serverless function, but package it with a Docker Image? That is possible now with AWS new Container support. This guide will show you how to try it yourself, step by step! The Hello Lambda Function project contains an AWS Lambda maven application with …

Read More »

Speed up your Spring Batch with Native Image and GraalVM

Author: Vincent Vauban Original post on Foojay: Read More Spring Batch is often used for data processing jobs that don’t run continuously. Instead, they start, process, and stop, which makes them a perfect candidate for GraalVM Native Image. Unlike traditional Java applications that require a long JVM startup time, Native Images execute almost instantly, giving a significant performance boost. In …

Read More »