Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
01-10 04:46
- Today
- Total
Tags
- 싱글톤 컨테이너
- Spring
- UsernamePasswordAuthenticationFilter
- 롬복 Qualifier
- Autowired 옵션
- 도커
- 스프링 컨테이너
- 스프링 싱글톤
- 스프링 Configuration
- DI컨테이너
- docker
- 라즈베리파이
- RequiredArgsConstructor
- 스프링
- autowired
- 객체지향
- 의존관계 주입
- 스프링 빈 조회
- 빈 중복 오류
- Spring interceptor
- Servlet Filter
- DI
- 라즈베리파이4
- 생성자 주입
- qualifier
- 스프링 빈
- beandefinition
- HandlerMethodArgumentResolver
- springsecurity
- ComponentScan
Archives
그날그날 공부기록
스프링의 의존관계 주입 방법 본문
의존관계는 다양한 방식으로 주입받을 수 있다.
- 생성자 주입
- setter(수정자) 주입
- 필드 주입
- 일반 메서드 주입
생성자 주입
- 생성자를 통해 의존관계를 주입받는다.
- 생성자는 1번만 호출된다. → 의존관계를 1번만 주입받는 것이 보장된다.
- 때문에 불변, 필수 의존관계에 사용된다고 한다.
@Component
public class OrderServiceImpl implements OrderService{
private final MemberRepository memberRepository;
private final DiscountPolicy discountPolicy;
@Autowired
public OrderServiceImpl(MemberRepository memberRepository, DiscountPolicy discountPolicy) {
this.memberRepository = memberRepository;
this.discountPolicy = discountPolicy;
}
}
setter 주입
- 수정자 메서드를 이용해서 의존관계를 주입받는다.
- 여러 번 호출될 수 있다.
- 때문에 선택, 변경의 가능성이 있는 의존관계에서 사용된다.
@Component
public class OrderServiceImpl implements OrderService{
private MemberRepository memberRepository;
private DiscountPolicy discountPolicy;
@Autowired
public void setMemberRepository(MemberRepository memberRepository) {
this.memberRepository = memberRepository;
}
@Autowired
public void setDiscountPolicy(DiscountPolicy discountPolicy) {
this.discountPolicy = discountPolicy;
}
}
호출 시점
두 주입 방식은 호출 시점이 다르다.
생성자 주입은 해당 객체가 생성되며 생성자가 호출될 때 의존관계 주입이 일어난다.
하지만 setter 주입은 객체가 생성되고 난 후 스프링 컨테이너가 @Autowired를 보고 주입한다.
만약 생성자와 setter 주입 두 가지 모두 있다면 생성자에 있는 의존관계가 먼저 주입된 후 setter에 있는 의존관계가 주입된다.
출처
'Spring 공부' 카테고리의 다른 글
@Autowired 옵션 처리 (0) | 2022.07.28 |
---|---|
스프링의 의존관계 주입 방법 2 (0) | 2022.07.27 |
@ComponentScan & @Autowired에 대하여 (0) | 2022.07.22 |
스프링의 @Configuration과 싱글톤 (0) | 2022.07.21 |
싱글톤 방식의 주의점 (0) | 2022.07.21 |
Comments