[Lecture - 김영한님(스프링 핵심 원리 - 기본편)] 의존 관계 자동 주입의 옵션 처리
inflearn에서 김영한님 강의를 들으면서 내용을 정리해보자.
스프링 핵심 원리 - 기본편
옵션 처리
주입할 스프링 빈이 없어도 동작해야 할 때가 있다.
그런데 @Autowired
만 사용하면 required
옵션의 기본값이 ture
로 되어 있어서 자동 주입 대상이 없으면 오류가 발생한다.
자동 주입 대상을 옵션으로 처리하는 방법은 아래와 같다.
@Autowired(required=false)
: 자동 주입할 대상이 없으면 수정자 메서드 자체가 호출 안됨org.springfreamework.lang.@Nullable
: 자동 주입할 대상이 없으면 null이 입력된다.Optional<>
: 자동 주입할 대상이 없으면Optional.empty
가 입력된다.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
public class AutowiredTest { @Test void AutowiredOption() { ApplicationContext ac = new AnnotationConfigApplicationContext(TestBean.class); } static class TestBean { @Autowired(required = false) public void setNoBean1(Member noBean1) { System.out.println("noBean1 = " + noBean1); } @Autowired public void setNoBean2(@Nullable Member noBean2) { System.out.println("noBean2 = " + noBean2); } @Autowired public void setNoBean3(Optional<Member> noBean3) { System.out.println("noBean3 = " + noBean3); } } }
- Member는 스프링 빈이 아니다
setNoBean1
은@Autowired(required=false)
이므로 호출 자체가 안된다.
출력 결과
1
2
noBean2 = null
noBean3 = Optional.empty
@Nullable, Optional은 스프링 전반에 걸쳐서 지원된다.
예를 들어, 생성자 자동 주입에서 특정 필드에만 사용해도 된다.
This post is licensed under CC BY 4.0 by the author.