Enrich Your Spring Applications by Leveraging Python Functionality with GraalVM

We already know that GraalVM compiles your Java applications ahead of time into standalone binaries that start instantly, provide peak performance with no warmup, and use fewer resources. GraalVM also supports polyglot programming where you can use multiple language features in single project. Polyglot programming refers to the practice of using multiple programming languages within…

|

Creating a Custom JUnit5 Extension: A Comprehensive Guide

JUnit 5 has the concept of extensions – a powerful feature that can be used to extend the behavior of JUnit tests. In this blog post, we will dive deep into the world of JUnit 5 extensions, and we’ll walk through the process of creating a custom JUnit5 extension. What is a JUnit5 Extension? In…