스프링 퀵 스타트 p54
① TVUser 클라이언트가 스프링 설정 파일을 로딩하여 컨테이너 구동
② 스프링 설정 파일에 등록된 SamsungTV 객체 생성
③ getBean() 메소드로 이름이 'tv'인 객체를 요청(Lookup)
④ SamsungTV 객체 반환
// ------- 9/24 (금)
// 스프링 컨테이너 구동 및 테스트
// TV 객체를 테스트 하는 클라이언트
// 환경설정 파일인 application Context.xml을 로딩하여 스프링 컨테이너 중 하나인 Generic~~을 구동
// 1. Spring 컨테이너를 구동한다.
AbstractApplicationContext factory = new GenericXmlApplicationContext("applicationContext.xml");
/* 구동 결과
INFO : org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [applicationContext.xml]
INFO : org.springframework.context.support.GenericXmlApplicationContext - Refreshing org.springframework.context.support.GenericXmlApplicationContext@7fad8c79: startup date [Fri Sep 24 16:40:21 KST 2021]; root of context hierarchy
*/
// 2. Spring 컨테이너로부터 필요한 객체를 요청(Lookup)한다.
TV tv = (TV)factory.getBean("tv");
tv.powerOn();
tv.powerOff();
tv.volumeUp();
tv.volumeDown();
// 3. Spring 컨테이너를 종료한다.
factory.close();
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<!-- 스프링 설정 파일 -->
<bean id="tv" class="polymorphism.SamsungTV"/>
<!-- 클래스 하나 당 하나의 <bean> 설정이 필요하다.
중요한 것은 class 속성값. 여기에 패키지 경로가 포함된 전체 클래스 경로를 지정해야 한다. -->
</beans>
package polymorphism;
// 다형성 실습
public class SamsungTV implements TV {
// 구동된 컨테이너로부터 SamsungTV 객체를 얻어내 보자.
// SamsungTV 객체가 언제 생성되는지 확인하기 위해서 기본 생성자를 추가
public SamsungTV() {
System.out.println("===> SamsungTV 객체 생성");
}
// 다형성을 활용한 코드(인터페이스 메소드 재정의 필요)
public void powerOn() {
System.out.println("SamsungTV---전원 켠다.");
}
public void powerOff() {
System.out.println("SamsungTV---전원 끈다.");
}
public void volumeUp() {
System.out.println("SamsungTV---소리 올린다.");
}
public void volumeDown() {
System.out.println("SamsungTV---소리 내린다.");
}
}
INFO : org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [applicationContext.xml]
INFO : org.springframework.context.support.GenericXmlApplicationContext - Refreshing org.springframework.context.support.GenericXmlApplicationContext@7fad8c79: startup date [Tue Oct 05 13:20:04 KST 2021]; root of context hierarchy
===> SamsungTV 객체 생성
SamsungTV---전원 켠다.
SamsungTV---전원 끈다.
SamsungTV---소리 올린다.
SamsungTV---소리 내린다.
INFO : org.springframework.context.support.GenericXmlApplicationContext - Closing org.springframework.context.support.GenericXmlApplicationContext@7fad8c79: startup date [Tue Oct 05 13:20:04 KST 2021]; root of context hierarchy