스프링 빈 스프링 빈은 이름, 타입, 객체로 구성 @Configuration + @Bean 프레임워크를 설정할 때 애플리케이션을 설정할 때 애플리케이션 전체에서 공통으로 사용할 때 @ConponentScan + Stereotype Annotation 비즈니스 로직을 처리할 때 예시로 들어가기전 file tree KaKao & Member는 NotificationService를 상속받고 있다. Spring Bean 주입 - @Bean + @Configuration : 01 메서드의 파라미터 전달 @Configuration public class JavaConfig { @Bean public MemberRepository memberRepository() { return new MemberRepository..