SpringFramework(2)
-
11/06/23 What is a Spring Bean?
Spring Bean is nothing special, any object in the Spring framework that we initialize through Spring container is called Spring Bean. Any normal Java POJO class can be a Spring Bean if it’s configured to be initialized via container by providing configuration metadata information. (Link)
2023.06.11 -
11/06/23 What are IoC, DI and the Spring IoC Container?
There're some important concepts in Spring Framework. The following contents are from https://www.baeldung.com/inversion-control-and-dependency-injection-in-spring. 1. Inversion of Control Inversion of Control is a principle in software engineering which transfers the control of objects or portions of a program to a container or framework. In contrast with traditional programming, in which our c..
2023.06.11