Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 이것이 자바다
- 리눅스
- html
- jsp연결
- 정처기필기
- 오라클
- 라우터
- 정보처리기사
- 원형그래프
- rinux
- php
- 참조타입
- 네트워크관리사
- 자바
- cisco packet
- autoset
- sql
- VLAN
- w3school
- Java
- Oracle
- 버추얼머신
- jsp
- NCS
- ciscopacket
- 데이터베이스
- 네트워크
- Cisco
- ospf
- javaee
Archives
- Today
- Total
기록해! 정리해!
어노테이션과 XML 설정 병행하여 사용하기 본문
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.3.xsd">
<context:component-scan base-package="polymorphism" />
<bean id="speaker" class="polymorphism.AppleSpeaker">
<property name="price" value="100"></property>
</bean>
</beans>
package polymorphism;
import org.springframework.context.support.AbstractApplicationContext;
import org.springframework.context.support.GenericXmlApplicationContext;
public class TVUser {
public static void main(String[] args) {
AbstractApplicationContext factory =
new GenericXmlApplicationContext("applicationContext.xml");
TV tv=(TV)factory.getBean("SamSungTV"); // SamSungTV , LgTV
tv.powerOn();
tv.volumeUp();
tv.volumeDown();
tv.powerOff();
factory.close();
}
}
1. Component 생성
2. Speaker 주입하기
package polymorphism;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component("SamSungTV")
public class SamSungTV implements TV{
@Autowired
private Speaker speaker;
SamSungTV(){
System.out.println("SamSungTV 생성자");
}
@Override
public void powerOn() {
System.out.println("==>SamSungTV powerOn");
}
@Override
public void powerOff() {
System.out.println("==>SamSungTV powerOff");
}
@Override
public void volumeUp() {
speaker.volumeUp();
}
@Override
public void volumeDown() {
speaker.volumeDown();
}
}
[ Setter 인젝션 사용하기 ]
package polymorphism;
public class AppleSpeaker implements Speaker {
int price =0;
AppleSpeaker(){
System.out.println("AppleSpeaker 생성자 ");
}
public void setPrice(int price) {
this.price = price;
}
@Override
public void volumeUp() {
System.out.println("==> AppleSpeaker volumeUp ");
System.out.println("가격:" + price);
}
@Override
public void volumeDown() {
System.out.println("==> AppleSpeaker volumeDown ");
}
}
'Spring' 카테고리의 다른 글
비즈니스 컴포넌트 실습 1 - pom.xml (드라이버 내려받기) (0) | 2022.09.20 |
---|---|
비즈니스 컴포넌트 실습 1 - table과 vo (0) | 2022.09.20 |
어노테이션 기반 설정 (0) | 2022.09.20 |
Setter 사용하기 (2) - p 네임스페이스 사용하기 (0) | 2022.09.20 |
Setter 사용하기 (1) (0) | 2022.09.20 |
Comments