더북(TheBook)

Parrot 클래스는 다음과 같다.

public class Parrot {

    private String name = "Koko";
    private final Person person;

    @Autowired
    public Parrot(Person person) { ← 스프링은 Parrot 인스턴스를 생성하는 데 Person 빈이 필요하다.
        this.person = person;
    }

// 코드 생략
}
신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.