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
- 2961 도영이가 만든 맛있는 음식
- 18233 비트마스킹
- Problems occurred while performing provisioning operation
- django 웹 페이지
- 공유기 원격 설정
- apache pythonpath
- 2961 java
- 2643 java
- 1188 음식 평론가
- 18233 java
- The requested operation has failed!
- django The requested operation has failed!
- 2661 좋은 수열
- windows apache wsgi 에러
- 2643 색종이 올려 놓기
- 18233 러버덕
- 14711 java
- 14711 타일 뒤집기
- django 프로젝트 시작
- django apache deploy error
- java di
- 1188 java
- django settings.py
- 2661 java
- windows 원격 연결 설정
- django
- django httpd error
- APPEND_SLASH = FALSE
- django windows 배포 에러
- 원격 연결 포트 포워딩
Archives
라이브러리는 도서관 아닌가요
DI 5 - @Resources @Autowired 차이 본문
이전 포스트( https://verycrazy.tistory.com/60 )에서 작성한 내용은 @Autowired 를 기반으로 하고 있다.
이번에는 비슷한 역할을 하지만 Java 자체에서 제공하는 @Resource 를 살펴보자.
먼저 이전과 같은 xml 파일,
setting.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"
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>
그 다음으로 변경 전 @Autowired
myPackage/Laptop.java
package myPackage;
import javax.annotation.Resource;
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();
}
}
그 다음 변경 후 @Resource
myPackage/Laptop.java
package myPackage;
import javax.annotation.Resource;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
public class Laptop {
@Resource(name="aKeyboard1")
Keyboard keyboard;
public Keyboard getKeyboard() {
return keyboard;
}
public void setKeyboard(Keyboard keyboard) {
this.keyboard = keyboard;
}
public String showInputBrand() {
return "연결된 키보드= " + keyboard.getKeyboardBrand();
}
}
이전에 설명했다시피, @Autowired는 결국 타입을 먼저 찾는 녀석인데,
만약 같은 클래스 타입의 객체가 다수 존재한다면 @Qualifier의 도움으로 id를 통해 구분 짓는다.
반대로 @Resource는 name 속성을 통해 처음부터 id를 인자로 받는다.
오히려 처음부터 id를 지정함으로써 더욱 깔끔한 느낌을 준다.
실행 결과
똑같다.
'Java > DI' 카테고리의 다른 글
DI 4 - @Qualifier("")를 사용해 @Autowired id 설정 (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