일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 오라클
- JavaScript
- Python
- 유럽여행
- db
- Mac
- 노드
- 영어
- 딥러닝
- 머신러닝
- SAP
- nodejs
- SAP ABAP
- Programming
- 도커
- SAP ERP
- Java
- Oracle DB
- docker
- node.js
- Spring Framework
- oracle
- 오라클 디비
- sap mm
- 자바스크립트
- 자바
- ABAP
- 파이썬
- IT
- 비지니스영어
- Today
- Total
JIHYUN JEONG
[스프링 프레임워크/Spring Framework] Spring Framework container Factory기능 예제 03 본문
[스프링 프레임워크/Spring Framework] Spring Framework container Factory기능 예제 03
StopHyun 2013. 3. 13. 18:04[예제]
1 패키지 생성
2 GreetingServiceKO Class 생성 > 마찬가지고 GreetingServiceEn Class 생성
3 GreetingService Interface 생성
4 완성된 소스들
○ good 패키지의 경우
package com.asianaidt.greeting.good;
public interface GreetingService {
// 인터페이스는 자동으로 public abstract가 추가가 됨(생략할 시)
void sayHello(String name);
}
package com.asianaidt.greeting.good;
public class GreetingServiceEn implements GreetingService{
public void sayHello(String name){
System.out.println("hello"+name);
}
}
package com.asianaidt.greeting.good;
public class GreetingServiceKO implements GreetingService{
public void sayHello(String name){
System.out.println("안녕"+name);
}
}
package com.asianaidt.greeting.good;
public class GreetingTest {
public static void main(String[] args) {
// big >= small
GreetingService greetingService = new GreetingServiceEn();
greetingService.sayHello("이동욱");
}
}
○ 컨테이너를 사용하는 경우
- 달라지는 것은 GreetingTest 부분만 달라짐 (유의해서 볼 것)
package com.asianaidt.greeting.excellent;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class GreetingTest {
public static void main(String[] args) {
ApplicationContext container = new ClassPathXmlApplicationContext("applicationContext.xml");
// big >= small
GreetingService greetingService = (GreetingService)container.getBean("greeting");
greetingService.sayHello("이동욱");
}
}
[과정 설명]
1 pom.xml > Dependencies
2 add > spring-beans
3 프로젝트(0313_step01_basic) 오른쪽 마우스 클릭 > configure > convert to maven project > dependency > add > spring-context
두가지 다 설정 완료
4 src > 오른쪽 마우스 클릭 > new Configuration File
5. src > applicationContext.xml > beans > New Bean
6 설정파일(GreetingServiceKO) 검색
7 이름설정
8 완료화면
9 완성소스
실행화면
실행화면 우리가 Factory에 저장해 두었던 속성대로 GreetingServiceKO로 가서 안녕이동이라는 결과값을 띄우게 된다.
'Information Technology > Spring ' 카테고리의 다른 글
[스프링 프레임워크/Spring Framework] Annotation(어노테이션)/ AOP(Aspect Oriented Programming) 05 (0) | 2013.03.15 |
---|---|
[스프링 프레임워크/Spring Framework] Dependency Injection(DI) 04 (0) | 2013.03.15 |
[스프링 프레임워크/Spring Framework] 이클립스+메이븐(eclipse + maven) 설치02 (0) | 2013.03.13 |
[스프링 프레임워크/Spring Framework] 개요 및 특징 01 (0) | 2013.03.13 |
XML 관련 자료 (0) | 2012.07.23 |