Exploring Advanced Java Stream API ConceptsJava Streams API, introduced in Java 8, revolutionized the way we process collections of objects. Streams provide a declarative way to…May 26May 26
Java Stream operationsSteams are introduced in java 8, stream is a sequence of object that supports various operations which can be pipelined in the sequence to…May 2, 2022May 2, 2022
REST API URI design with Order management example.REST is a software architectural style that helps to design web services. It helps systems to communicate with interoperability.Jan 4, 2021Jan 4, 2021
Best practices to design REST API callsRESTful web services is becoming much popular because of the layered architecture, client-server model, and it allows to transfer data not…Jan 4, 2021Jan 4, 2021
Lifting State Up — How I used Lifting State Up in my scenario.I encountered a scenario to pass selected data from SideBar component to Main Content component based on checkbox selection. With this…Jan 2, 2021Jan 2, 2021
Java String — Interesting features with examples.String is immutable Object in java. It means once we create the new Object it cannot be modified. If any modification performed it always…Dec 24, 2020Dec 24, 2020
Java 14 new feature with pattern matching for the instanceof operator(preview)What is the preview feature?Sep 17, 2020Sep 17, 2020
JDK 14 New Feature to print a detailed message in NullPointerExceptions.In Object-oriented programming, a null refers to an object without any reference. Developers have to ensure that an object should not be…Sep 12, 2020Sep 12, 2020