Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- AWS
- Cloud Storage
- kubernetes
- Solution Architect Certificate
- Google Cloud Platform
- Cloud Datastore
- 리버스 프록시
- gcp
- 아마존웹서비스
- AWS 자격증
- Compute Engine
- ansible
- Reverse Proxy
- Cloud SQL
- Solution Architect
- VPC
- AWS Database
- playbook
- AWS Certificate
- GKE
- Amazon Web Service
- Kubernetes Engine
- Google Cloud Platorm
- AWS Solution Architect
- Cloud Bigtable
- Cloud Spanner
- Google Cloud Platrofm
- 앤서블
- Google Cloud
- container
Archives
- Today
- Total
sungwony
IoC 컨테이너 본문
Bean 객체의 초기화
Spring Container 객체를 생성하는 순간, XML 설정파일에 등록된 Bean 객체들이 초기화됨
Spring Container의 2가지 유형
BeanFactory
- BeanFactory 객체가 생성되는 시점에 Bean 객체를 생성하지 않음
- 실제 해당 Bean이 사용될 시점에 객체를 초기화
ApplicationContext
- 다양한 기능을 사용할 수 있음
- Container 초기화 시점에 모든 Bean을 초기화시키고 사용함
Bean의 Life Cycle
Spring에서는 는 Bean을 POJO로 만들 수 있기 때문에 Framework에서 강제하는 Life Cycle 메소드는 가지지 않아도 되며, 필요한 경우에는 취사 선택적으로 이용할 수 있음
Spring Framework에서 제공하는 인터페이스를 구현하여 Bean을 만들면 됨
'development > 스프링 프레임워크' 카테고리의 다른 글
[스프링] AOP - Aspect Oriented Programming (0) | 2018.07.10 |
---|---|
[Spring Framework] IoC 메모 (0) | 2018.07.01 |
[Spring]스프링 프레임워크 개론 (0) | 2017.04.06 |