MTMohammed Taoufikinmtl98.hashnode.devยทMay 10, 2023 ยท 2 min readDiscover the Fascinating Life Cycle of Spring Boot Beansย ๐ฑ๐Spring Boot is a popular framework that simplifies the process of building, configuring, and deploying Spring-based applications. As a core feature of Spring Boot, the Spring Beans play a crucial role in the overall architecture of the application. B...00
MTMohammed Taoufikinmtl98.hashnode.devยทMay 7, 2023 ยท 2 min readDon't use @RefreshScope in controllers - Spring Framework๐ฑ Spring is a popular framework for building Java applications, and one of its many features is the @RefreshScope annotation. ๐ This annotation is used to enable dynamic reloading of Spring beans, which can be particularly useful in distributed sys...00
MTMohammed Taoufikinmtl98.hashnode.devยทMay 2, 2023 ยท 1 min readLambda expression in java7ย ๐ณJava is a popular programming language used to develop a wide range of applications. One of the most significant changes in Java 8 was the introduction of lambda expressions, which greatly simplified writing functional code. Lambda expressions provid...00
MTMohammed Taoufikinmtl98.hashnode.devยทMay 2, 2023 ยท 1 min readHave you heard about the @SpringBootApplication annotation?Itโs a shorthand for several other annotations that allow for quick and easy configuration of a Spring Boot project. But what exactly happens behind the scenes when you use this annotation? First, the @SpringBootApplication annotation enables the @Co...00
MTMohammed Taoufikinmtl98.hashnode.devยทApr 29, 2023 ยท 1 min readDefault Method Java 8๐๐๐๐๐ฎ๐ฅ๐ญ ๐ฆ๐๐ญ๐ก๐จ๐ One of the news of JAVA 8 , itโs simply a keyword โdefaultโ added to a method in an interface to make it as default . ๐พ๐๐ ๐๐โ๐ ๐๐ ๐ ๐๐ !? Sometimes we have many classes implementing same interface A. After a time ...00