목표 : Spring Bean 생성자 주입이 많은 이유를 설명할 수 있다. 이전 포스팅으로 Bean 주입에 대해 설명한 적이 있다. 잠깐 다시 정리해보자. Bean의 주입 방법 Bean의 주입 방법은 크게 3가지가 있다. 생성자 주입, Setter를 통한 주입은 앞선 포스팅으로 보았고, 필드를 통한 주입까지 3가지가 있다 Setter를 통한 주입 package com.example.demo.di; import lombok.Data; @Data public class MyBean { private int msg; } package com.example.demo.di; import lombok.Data; import org.springframework.beans.factory.annotation.Autowi..