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
- 1188 음식 평론가
- java di
- django The requested operation has failed!
- 1188 java
- 14711 java
- 공유기 원격 설정
- django 프로젝트 시작
- windows apache wsgi 에러
- APPEND_SLASH = FALSE
- django httpd error
- 14711 타일 뒤집기
- 2661 java
- 18233 java
- django settings.py
- 18233 러버덕
- 2643 색종이 올려 놓기
- 원격 연결 포트 포워딩
- django windows 배포 에러
- django apache deploy error
- The requested operation has failed!
- 2643 java
- 18233 비트마스킹
- 2961 도영이가 만든 맛있는 음식
- django
- windows 원격 연결 설정
- Problems occurred while performing provisioning operation
- 2661 좋은 수열
- apache pythonpath
- django 웹 페이지
- 2961 java
Archives
라이브러리는 도서관 아닌가요
DI 4 - @Qualifier("")를 사용해 @Autowired id 설정 본문
바로 앞에서 ( https://verycrazy.tistory.com/59 )
@Autowired를 사용해서 바인딩을 했다.
문제는, 이게 설정 파일의 무엇을 기준으로 진행되냐는 것이다.
바로 '타입'이다.
이전 코드
<?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
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.1.xsd"
xmlns:context="http://www.springframework.org/schema/context">
<context:annotation-config />
<!-- Keyboard 타입인 aKeyboard가 해당 경로에 존재하니 참조해라 -->
<bean id="aKeyboard" class="myPackage.KoreaKeyboard" />
<!-- Laptop 타입인 aLaptop이 해당 경로에 존재하니 참조해라 -->
<bean id="aLaptop" class="myPackage.Laptop">
<!-- Keyboard aKeyboard = new KoreaKeyboard(); -->
<!-- aLaptop.setKeyboard(aKeyboard); -->
<!-- <property name="keyboard" ref="aKeyboard"></property> -->
</bean>
</beans>
를 아래와 같이 aKeyboard의 id를 변경해보자.
변경 코드
<?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
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.1.xsd"
xmlns:context="http://www.springframework.org/schema/context">
<context:annotation-config />
<!-- Keyboard 타입인 aKeyboard가 해당 경로에 존재하니 참조해라 -->
<bean id="aKeyboard1" class="myPackage.KoreaKeyboard" />
<!-- Laptop 타입인 aLaptop이 해당 경로에 존재하니 참조해라 -->
<bean id="aLaptop" class="myPackage.Laptop">
<!-- Keyboard aKeyboard = new KoreaKeyboard(); -->
<!-- aLaptop.setKeyboard(aKeyboard); -->
<!-- <property name="keyboard" ref="aKeyboard"></property> -->
</bean>
</beans>
위처럼 변경하더라도,
잘 동작한다.
@Autowired는 처음 찾을 때는 id에 기반을 두지 않고, 타입에 맞춰서 생성된 단 하나의 객체를 찾기 때문이다.
그럼 아래처럼 id가 다른 두 개의 객체를 생성해버리면 당연히 오류가 나지 않을까?
<?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
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.1.xsd"
xmlns:context="http://www.springframework.org/schema/context">
<context:annotation-config />
<!-- Keyboard 타입인 aKeyboard가 해당 경로에 존재하니 참조해라 -->
<bean id="aKeyboard1" class="myPackage.KoreaKeyboard" />
<bean id="aKeyboard2" class="myPackage.KoreaKeyboard" />
<!-- Laptop 타입인 aLaptop이 해당 경로에 존재하니 참조해라 -->
<bean id="aLaptop" class="myPackage.Laptop">
<!-- Keyboard aKeyboard = new KoreaKeyboard(); -->
<!-- aLaptop.setKeyboard(aKeyboard); -->
<!-- <property name="keyboard" ref="aKeyboard"></property> -->
</bean>
</beans>
역시 에러를 뿜는다.
이 때 바로 @Qualifier의 도움을 받아 id를 통해 찾을 수 있는 것이다.
Laptop.java 코드를 살펴보자.
package myPackage;
import org.springframework.beans.factory.annotation.Autowired;
public class Laptop {
@Autowired
Keyboard keyboard;
public Keyboard getKeyboard() {
return keyboard;
}
public void setKeyboard(Keyboard keyboard) {
this.keyboard = keyboard;
}
public String showInputBrand() {
return "연결된 키보드= " + keyboard.getKeyboardBrand();
}
}
어디에 @Qualifier를 붙이면 좋을까? 직관적으로 봤을 때 @Autowired 밑이다.
변경된 Laptop.java
package myPackage;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
public class Laptop {
@Autowired
@Qualifier("aKeyboard1")
Keyboard keyboard;
public Keyboard getKeyboard() {
return keyboard;
}
public void setKeyboard(Keyboard keyboard) {
this.keyboard = keyboard;
}
public String showInputBrand() {
return "연결된 키보드= " + keyboard.getKeyboardBrand();
}
}
위의 @Qualifier("aKeyboard1")와 같이 아이디를 Qualifier 내에 지정해주면,
정확하게 xml의 저 녀석과 바인딩된다.
실행 결과
아주 흡족하게 잘 된다.
'Java > DI' 카테고리의 다른 글
DI 5 - @Resources @Autowired 차이 (0) | 2021.12.17 |
---|---|
DI 3 - Annotation을 사용한 Spring 의존성 주입 @Autowired (0) | 2021.12.17 |
DI 2 - xml 파일로 Spring DI 지시서 작성 (0) | 2021.12.14 |
DI 1 - 의존성 발생 지점은 new (0) | 2021.12.06 |
Comments