주입할 스프링 빈이 없어도 동작해야 할 때가 있다. @Autowired만 사용하면 required 옵션의 기본값이 true로 되어 있어 자동 주입 대상이 없으면 오류가 발생한다.
public class AutowiredTest {
@Test
void AutowiredOption(){
AnnotationConfigApplicationContext 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);
}
}
}
noBean2 = null
noBean3 = Optional.empty
자동 주입할 대상이 없으면 수정자 메서드 자체가 호출 안됨
자동 주입할 대상이 없으면 null이 입력됨
자동 주입할 대상이 없으면 Otional.empty가 입력됨