@Scope("prototype") : 기본적인 bean scope는 singleton으로 설정되어 있음 singleton은 IoC 컨테이너 당 하나의 인스턴스만 생성함 protorype으로 설정을 변경하면 요청할 때마다 bean 인스턴스(객체)를 새롭게 생성함. @Scope("prototype") ㅇㅖ제 부모 class 생성 public abstract class Product { 생성불가타입으로 만들어주기 abstract 객체 생성하지 않을거여서~ private String name; private int price; public Product() {} public Product(String name, int price) { super(); this.name = name; this.price = pr..