MSMayank Singhincodewithmayank.hashnode.dev·May 14, 2024 · 5 min readBringing Spring Framework to make app loosely coupledSpring Configuration @Configuration Annotation Spring @Configuration annotation is part of the spring core framework. Spring Configuration annotation indicates that the class has @Bean definition methods. So Spring container can process the class and...00
MSMayank Singhincodewithmayank.hashnode.dev·May 14, 2024 · 1 min readSpring Framework Terminologies@Component: An instance of that class will be managed by the Spring framework. @ComponentScan: where to find components. a package will be provided as an argument along with Componentscan and in that package Spring Framework will search for component...00
MSMayank Singhincodewithmayank.hashnode.dev·May 14, 2024 · 3 min readGetting Started with Spring BootThe World Before Spring Boot: Setting up the Spring project before Spring Boot was not easy! Dependency Management (pom.xml) Define Web App Configuration(web.xml) Manage Spring Beans(context.xml) Implement Non-functional requirements (NFRs) It ...00
MSMayank Singhincodewithmayank.hashnode.dev·May 14, 2024 · 1 min readSpring vs Spring MVC vs Spring BootSpring Framework: All about dependency injection. @Component, @Autowired, @ComponentScan etc.. Just Dependency injection is NOT Sufficient (You need other frameworks to build apps)Spring modules and Spring Projects: Extend spring echo System. Provide...00
MSMayank Singhincodewithmayank.hashnode.dev·May 11, 2024 · 2 min readBasics of Spring FrameworkSpring Container vs Spring Context vs IOC Container vs Application Context Spring Container or Spring Context or IOC Container : Manages Spring Beans and their life cycles. To manage Spring Bean Spring makes use of either : Bean Factory: Basic Sprin...00