-
Core Java
Skip First Iteration in Java
Iterating serves as a fundamental aspect of programming, empowering developers to navigate and manipulate data structures with ease. Nonetheless, circumstances…
Read More » -
Docker
Create a Java GraalVM Docker Image
GraalVM employs its Ahead-Of-Time (AOT) compiler to translate Java applications into machine executables. These binaries execute directly on the target…
Read More » -
Core Java
Guide to String Templates in Java 21
Java 21 introduced a powerful new feature called String Templates, offering a more versatile and secure way to construct strings…
Read More » -
Core Java
Java Arrays & Collections Sort Methods
Sorting in Java is a crucial aspect of programming, systematically enabling the organization of data. Let us delve into understanding…
Read More » -
DevOps
Trunk-based Development
Trunk-based development (TBD) is a software development methodology that emphasizes continuous integration and collaboration among team members. Unlike traditional feature…
Read More » -
Core Java
Merge Two Arrays and Delete Duplicates in Java
In Java programming, working with arrays is a common task. Often, we may find ourselves needing to merge two arrays…
Read More » -
Core Java
Case Insensitive String Handling in Java Lists
Checking if a List contains a string element while ignoring cases can be a common requirement, especially when dealing with…
Read More » -
Core Java
Converting Excel Data Into a List Of Java Objects
Understanding data mapping holds significant importance in software development. Given Excel’s widespread usage in data management, Java developers must learn…
Read More » -
spring
Modernizing Deprecated jdbcTemplate Methods in Spring Boot 2.4.X and Beyond
The queryForObject() method in Spring’s JdbcTemplate executes a SQL query and returns a single object, typically used when expecting a…
Read More » -
Kubernetes
Edit Kubernetes Deployment With No Manual File Changes
A Kubernetes Deployment is a YAML configuration defining a pod or group of pods in a cluster. It enables easy…
Read More »