Atul Rai
I love sharing my experiments and ideas with everyone by writing articles on the latest technological trends.

Display all beans name loaded by Spring Boot

In Spring Boot, you can display all the bean names loaded in the application context using the ApplicationContext object. See […] Continue reading »

IntelliJ IDEA- Enable Multiple Cursors for Editing

In IntelliJ IDEA, using Alt + Shift + Mouse Click (Windows/Linux) or Option + Shift + Mouse Click (macOS), you […] Continue reading »

Different Ways To Styling React Component

There are several ways to style React components, each with its own advantages and use cases. Here are some common […] Continue reading »

Sealed Interface in Java 17

In Java, a sealed interface is a feature introduced in Java 17 to restrict which classes can implement an interface. […] Continue reading »

Java 17 Sealed Classes

Java 17, the latest Long-Term Support (LTS) version, introduces several new features and enhancements aimed at improving code readability, maintainability, […] Continue reading »

Java 8 Collectors.partitioningBy() Method Example

Java 8 Stream API’s Collectors.partitioningBy() method, which offers a powerful way to partition elements of a stream into two groups […] Continue reading »

Java Map.of() vs Map.ofEntries() Method

In Java, the Map.of() and Map.ofEntries() static factory methods were introduced in Java 9 as part of the java.util.Map interface […] Continue reading »

Java Stream peek() Method Example

In this blog, we’ll explore the Java 8 Stream peek() method, understanding its purpose and demonstrating how it can be […] Continue reading »

Understanding the Singleton Design Pattern in Java

In terms of software design patterns, the Singleton pattern holds a special place, revered for its ability to ensure that […] Continue reading »

Java 8– Find first and all smallest string in List

Using the Java 8 Stream API min method, you can find the first and all smallest strings from a List. […] Continue reading »

Java 8– Find first and all longest strings in List

In Java 8, you can find the first and all longest strings from a list using the Stream API along […] Continue reading »

1 2 3 4 5 42