728x90
반응형
권장하는 주입방법
앞서 의존성 주입 방법을 알아 보았다.
https://vprog1215.tistory.com/51?category=989392
그렇다면 가장 권장되는 방법은 무엇일까?
이제부터 알아보자
권장하는 주입방법
과거에는 수정자 주입과 필드 주입을 많이 했지만
최근에는 스프링을 포함하 DI 프레임워크 대부분이 생성자 주입을 권장 한다.
수정자 주입은 위험하다?
- setXxx 메서드를 public으로 열어 두어야 한다.
- 누군가 변경할수 있다. 상당히 위험하다.
- 오작동을 할 수 있다.
권장이유
1. 불변
의존 관계 주입을 한번 하게 되면 애플리케이션이 종료될때 까지 의존관계를 변경할 일이 없다.
대부분 의존관계는 애플리케이션 종료 전까지 변경되면 안된다.
2. final 키워드를 사용할수 있다.
생성자 주입을 사용하면 필드에 final 키워드를 사용할 수 있다.
그래서 생성자에서 혹시라도 값이 설정되지 않는 오류를 컴파일 시점에 막아준다.
package hello.core.order;
import hello.core.discount.DiscountPolicy;
import hello.core.member.Member;
import hello.core.member.MemberRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@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;
}
@Override
public Order createOrder(Long memberID, String itemName, int itemPrice) {
Member member = memberRepository.findById(memberID);
int discountPrice = discountPolicy.discount(member, itemPrice);
return new Order(memberID, itemName, itemPrice, discountPrice);
}
// Test 전용
public MemberRepository getMemberRepository() {
return memberRepository;
}
}
사용이유
- 생성자 주입 방식을 선택하는 이유는 여러가지가 있지만, 프레임워크에 의존하지 않고, 순수한 자바 언어의
특징을 잘 살리는 방법이기도 하다. - 기본으로 생성자 주입을 사용하고, 필수 값이 아닌 경우에는 수정자 주입 방식을 옵션으로 부여하면 된다. 생
성자 주입과 수정자 주입을 동시에 사용할 수 있다 - 항상 생성자 주입을 선택해라! 그리고 가끔 옵션이 필요하면 수정자 주입을 선택해라. 필드 주입은 사용하지
않는게 좋다.
728x90
반응형
'Spring > spring 기초 스터디' 카테고리의 다른 글
[Spring] 조회된 빈이 2개일때 No qualifying bean (0) | 2021.05.23 |
---|---|
[Spring] Lombok (0) | 2021.05.23 |
[Spring] 의존성 주입방법 1 (0) | 2021.05.15 |
[Spring] ComponentScan2 - Annotation만들기 (0) | 2021.05.08 |
[Spring] ComponentScan1 - 기초 (0) | 2021.05.08 |
댓글