Bean - Spring IoC 컨테이너가 관리하는 자바 객체를 Bean이라는 한다. - Spring에서 Bean은 ApplicationContext가 알고있는 객체를 의미한다. Spring IoC 컨테이너에 Bean 등록 - Spring Bean Configuration File에서 직접 등록 // Bean 등록 // Factory method 등록 // 등록된 Bean을 변수 값으로 사용 시 // Bean id를 ref에 담기 spring 봄 하늘 땅 - base-package 안에 있는 Component, Controller, Service, Repository, Configuration 어노테이션이 자동으로 ApplicationContext에 등록 ( Namespaces > context 추가) ..