Apr 1, 2025 · 4 min read · Introduced in Java 10 and enhanced in Java 11, local variable type inference allows developers to use the keyword var instead of explicit type declarations for local variables. So, the purpose of this feature is to reduce verbosity. For instance, rat...
Join discussion
Mar 31, 2025 · 2 min read · While integrating with an external service, I needed to make high-volume API calls as efficiently as possible. The service responds in under 10ms, and blocking threads would slow everything down.To solve this, I used Java's built-in HttpClient and it...
Join discussionFeb 3, 2024 · 3 min read · 👋🏻 Introduction Have you ever run into problems when you need to install different versions of Java or Maven? I have always found that installing another Java version and setting the JAVA_HOME and PATH variables very cumbersome. What if I tell you ...
Join discussion
Jan 15, 2024 · 3 min read · 🔋 Spring Boot . Spring Boot es un marco de desarrollo de aplicaciones en Java basado en el framework Spring. Nos proporciona una forma rápida y sencilla de crear aplicaciones Java con una configuración mínima. Una de las principales características ...
Join discussionJan 14, 2024 · 2 min read · Java 11 introduced several features and enhancements. Here's a list of some notable features along with examples: Local-Variable Syntax for Lambda Parameters: In Java 11, you can use var in lambda expressions. // Before Java 11 BiFunctio...
Join discussion
Jun 22, 2023 · 15 min read · Introduction In an ever-evolving technology landscape, staying up-to-date with the latest software upgrades is a cornerstone for maintaining robust and efficient applications. Among the many tools that developers employ, Java remains a steadfast pres...
Join discussion
Apr 11, 2023 · 3 min read · Pros of Java 11 Improved performance: Java 11 offers better performance in terms of startup time, throughput, and garbage collection. Enhanced security: Java 11 includes new security features, such as TLS 1.3 support and improved cryptography algor...
Join discussionOct 25, 2022 · 3 min read · Introduction As an experienced Java Developer, It was an opportunity for me to take the discounted exam (90% off) starting from February 25 to April 25 of 2021. The discounted exam was due to the Java 25th Anniversary. I ended up scoring 76% and it w...
Join discussion