Java 17 + AWS Lambda (06 Jun 2023)
AWS recently announced Java 17 support for Lambdas, In this blog post, we'll explore how to create a Java 17 AWS Lambda Function without IDE, build tool or any dependency.
🏆 Default 🔗 Maven and ☕ Java settings per project (23 Sep 2021)
Almost every single project requires some specific options for Maven and Java, like memory, profiles, etc., and we are going to see how to set up those per project in a few easy steps.
🔌 Restore IntelliJ Idea settings ⛽ (30 Apr 2020)
After several installations and reinstallations of IDEs and different Java/JDK versions (8, 9, 11, 14), the IDE was not able to import my maven projects. The IntelliJ IDEA was acting as a simple text editor at this time 😟.
🚀 Java 14 Records 💾 (Preview) (17 Apr 2020)
Java 14 Record is a new kind of type declaration in the Java language. Like an enum, a record is a restricted form of class. It declares its representation and commits to an API that matches that representation.
☕️ Immutables/AutoValue/Lombok 🔥 Which One? (12 Apr 2020)
In this article, we are going to compare some of the features of the Immutables.org library, Google AutoValue, and Project Lombok.
🎩 Immutability in Java 🔥 Made Easy (11 Apr 2020)
In this article, we describe how to use the Immutables.org library to generate our immutable classes instead of doing manual error-prone implementations.
💉 Inyección de Dependencias en Java ☕️ (10 Feb 2020)
Este artículo, describe el concepto de Inyección de dependencias en Java y cómo nos ayuda a tener una base de código más modular y desacoplada
💉 Dependency Injection in Java ☕️ (14 Nov 2019)
In this article, describe the concept of Dependency Injection in Java and how it helps us to have a more modular and decoupled codebase.