Member-only story
Spring Core implementation using Spring Boot (Part-1) (Run spring boot in vs code)
In this tutorial we will learn spring core concept using spring boot. Let’s first discuss about spring core then we implement this concept using spring boot.
Spring Core
As we all know spring application contains several module like Spring Core, Spring data, Spring MVC etc. It’s good to start the spring journey through spring core.
Spring Core Features
Spring core provide all core level features like
- IOC (Inversion Of Control)
- Bean
- Internalization
- Spring EL (Spring Expression Language)
- AOP etc.
IOC principle
In general IOC is a principle which followed by OOPS language. IOC principle tell that if a class need mandatory filed to create there object then pass it during its object creation time.
Without IOC Implementation
In the above POJO class if somebody wants to create object then he/she can create the object by calling the default…