@PropertySource vs @PropertySources 2 Annotations Overview (2023) Author, June 1, 2023August 19, 2024 @PropertySource and @PropertySources Annotations In Spring Framework, the @PropertySource annotation is used to specify the… Continue Reading
Difference between YYYY vs yyyy -Java Date Formatter Author, January 26, 2023August 19, 2024 Intro Dates in programming are hard. The ISO-8601 Date standard made them easier, but to… Continue Reading
Replace Multiple Consecutive Characters with Single Character in Java Author, January 1, 2023 This tutorial shows you how to replace multiple consecutive characters with single character. Consider we… Continue Reading
Autoboxing and Unboxing in Java Author, January 1, 2023 Autoboxing is an automatic conversion of a primitive type into its corresponding wrapper class object… Continue Reading
How To Find the Duplicate Number In Java Author, December 19, 2022 Question: Given an array of integers nums containing n + 1 integers where each integer… Continue Reading
Java Streams API Author, August 28, 2022February 11, 2024 A Stream in Java can be defined as a sequence of elements from a source. The source of… Continue Reading
IS-A relationship in java Author, August 13, 2022 Is a relationship is also known as inheritance. We can implement ‘is a’ relationship or… Continue Reading
Super keyword in java Author, August 13, 2022August 13, 2022 Variables and methods of super class can be overridden in subclass. In case of overriding,… Continue Reading