# Bean 객체 획득 ApplicationContext ctx = new ClassPathXmlApplicationContext("com/springinaction/springidol/spring-idol.xml");//이게 컨테이너를 생성하는 코드야//컨테이너로부터 특정 bean 객체의 참조 정보를 가져옴//첫번째 방법//id로만 가져오면 Object 타입으로 변환된다. 따라서 타입캐스팅 꼭 해줘야한다.Performer performer = (Performer) ctx.getBean("duke");//두번째 방법//타입을 지정하기때문에 타입캐스팅 필요 없다.Performer performer2 = ctx.getBean("duke", Performer.class);// 두가지 방법의 결과는 같음// P..