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 |
Tags
- BOJ
- TCP/IP
- n타일링2
- 열혈 TCP/IP 소켓 프로그래밍
- 운영체제
- Spring
- Four Squares
- Window-Via-c/c++
- 10026번
- 우아한 테크 세미나
- redis
- 윤성우 저자
- HTTP
- 김영한
- Operating System
- OS
- 토마토
- FIFO paging
- 스프링 핵심 원리
- 제프리리처
- C++
- C#
- 열혈 tcp/ip 프로그래밍
- 에러핸들링
- 스프링 입문
- inflearn
- 우아한레디스
- Operating System.
- 이펙티브코틀린
- 2475번
Archives
- Today
- Total
나의 브을로오그으
#4-2. [스프링 핵심 원리-기본편] - 스프링 빈 조회 본문
스프링 빈 조회 기본
스프링 컨테이너에서 스프링 빈을 찾는 가장 기본적인 조회 바업ㅂ
* ac.getBean("빈 이름", 타입);
* ac.getBean(타입);
* 조회 대상 스프링 빈이 없으면 예외 발생
* NoSuchBeanDefinitionException : No bean named 'xxxxx' avaliable
package hello.core.beanfind;
import hello.core.member.MemberService;
import hello.core.member.MemberServiceImpl;
import hello.core.order.AppConfig;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.NoSuchBeanDefinitionException;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.jupiter.api.Assertions.assertThrows;
public class ApplicationContextBasicFindTest {
AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(AppConfig.class);
@Test
@DisplayName("빈 이름으로 조회")
void findBeanByName() {
MemberService memberService = ac.getBean("memberService", MemberService.class);
assertThat(memberService).isInstanceOf(MemberServiceImpl.class);
}
@Test
@DisplayName("이름 없이 타입으로만 조회")
void findBeanByType() {
MemberService memberService = ac.getBean(MemberService.class);
assertThat(memberService).isInstanceOf(MemberServiceImpl.class);
}
// 구체 타입으로 조회 시 유연성이 떨어지지만, 정확함.
@Test
@DisplayName("구체 타입으로 조회")
void findBeanByConcreteType() {
MemberService memberService = ac.getBean(MemberServiceImpl.class);
assertThat(memberService).isInstanceOf(MemberServiceImpl.class);
}
@Test
@DisplayName("빈 이름으로 조회X")
void findBeanByNameX() {
// 예외 발생 시 이 예외가 터져야 성공
assertThrows(NoSuchBeanDefinitionException.class, () ->
ac.getBean("nothing", MemberService.class));
}
}
스프링 빈 조회 - 동일한 타입이 둘 이상
- 타입으로 조회시 같은 타입의 스프링 빈이 둘 이상이면 오류가 발생한다. 이때는 빈 이름을 지정한다.
- ac.getBeansOfType()을 사용하면 해당 타입의 모든 빈을 조회할 수 있다.
package hello.core.beanfind;
import hello.core.member.MemberRepository;
import hello.core.member.MemoryMemberRepository;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.NoUniqueBeanDefinitionException;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import java.util.Map;
import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.jupiter.api.Assertions.assertThrows;
public class ApplicationContextSameBasicFindTest {
AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(SameBeanConfig.class);
@Test
@DisplayName("타입으로 조회 시 같은 타입이 둘 이상 이씅면, 중복 오류가 발생한다.")
void findBeanByTypeDuplicate() {
assertThrows(NoUniqueBeanDefinitionException.class, () -> ac.getBean(MemberRepository.class));
}
@Test
@DisplayName("타입으로 조회시 같은 타입이 둘 이상 있으면, 빈 이름을 지정하면 된다.")
void findBeanByName() {
MemberRepository memberRepository_1 = ac.getBean("memberRepository_1", MemberRepository.class);
assertThat(memberRepository_1).isInstanceOf(MemberRepository.class);
}
@Test
@DisplayName("특정 타입을 모두 조회하기")
void findAllBeanByType() {
Map<String, MemberRepository> beansOfType = ac.getBeansOfType(MemberRepository.class);
for (String key : beansOfType.keySet()) {
System.out.println("key = " + key + " value = " + beansOfType.get(key));
}
System.out.println("beansOfType = " + beansOfType);
assertThat(beansOfType.size()).isEqualTo(2);
}
@Configuration
static class SameBeanConfig {
@Bean
public MemberRepository memberRepository_1() {
return new MemoryMemberRepository();
}
@Bean
public MemberRepository memberRepository_2() {
return new MemoryMemberRepository();
}
}
}
스프링 빈 조회 - 상속관계
- 부모타입으로 조회하면, 자식 타입도 함께 조회한다.
- 그래서 모든 자바 객체의 최고 부모인 'Object' 타입으로 조회하면 모든 스프링 빈을 조회한다.
package hello.core.beanfind;
import hello.core.discount.DiscountPolicy;
import hello.core.discount.FixDiscountPolicy;
import hello.core.discount.RateDiscountPolicy;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.NoUniqueBeanDefinitionException;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import java.util.Map;
import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.jupiter.api.Assertions.assertThrows;
public class ApplicationContextExtendsFindTest {
AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(TestConfig.class);
@Test
@DisplayName("부모 타입으로 조회, 자식이 둘 이상 있으면, 중복 오류가 발생한다.")
void findBeanByParentTypeDuplicate() {
assertThrows(NoUniqueBeanDefinitionException.class,
() -> ac.getBean(DiscountPolicy.class));
}
@Test
@DisplayName("부모 타입으로 조회, 자식이 둘 이상 있으면, 빈 이름을 지정")
void findBeanByParentTypeBeanName() {
DiscountPolicy rateDiscountPolicy = ac.getBean("rateDiscountPolicy", DiscountPolicy.class);
assertThat(rateDiscountPolicy).isInstanceOf(RateDiscountPolicy.class);
}
@Test
@DisplayName("특정 하위 타입으로 조회")
void findBeanBySubType() {
// 별로 좋지 않은 방법
RateDiscountPolicy bean = ac.getBean(RateDiscountPolicy.class);
assertThat(bean).isInstanceOf(RateDiscountPolicy.class);
}
@Test
@DisplayName("부모 타입으로 모두 조회")
void findAllBeanByParentType() {
Map<String, DiscountPolicy> beansOfType = ac.getBeansOfType(DiscountPolicy.class);
assertThat(beansOfType.size()).isEqualTo(2);
for (String key : beansOfType.keySet()) {
System.out.println("key = " + key + " value = " + beansOfType.get(key));
}
}
@Test
@DisplayName("부모 타입으로 모두 조회 - Object")
void findAllBeanByObjectType() {
Map<String, Object> beansOfType = ac.getBeansOfType(Object.class);
for (String key : beansOfType.keySet()) {
System.out.println("key = " + key + " value = " + beansOfType.get(key));
}
}
@Configuration
static class TestConfig {
@Bean
public DiscountPolicy rateDiscountPolicy() {
return new RateDiscountPolicy();
}
@Bean
public DiscountPolicy fixDiscountPolicy() {
return new FixDiscountPolicy();
}
}
}
의존관계 주입은 사실 스프링 컨테이너가 자동으로 해준다. 즉, 빈 조회를 할일이 거의 없다는 의미이다. 그럼에도 불구하고 이것을 알아야 하는 이유는 기본적인 기능이기도 하고, 가끔 쓸일이 생길 수 있기 때문이다. 추가적으로 부모타입을 조회했을 때 어떻게 조회가 이루어지는지 정도는 알 필요가 있다.
'Spring' 카테고리의 다른 글
#4-4. [스프링 핵심 원리-기본편] - 다양한 설정 형식 지원 (0) | 2022.07.19 |
---|---|
#4-3. [스프링 핵심 원리-기본편] - BeanFactory와 ApplicationContext (0) | 2022.07.19 |
#4-1. [스프링 핵심 원리-기본편] - 스프링 컨테이너 (0) | 2022.07.19 |
#3-5. [스프링 핵심 원리-기본편] - 스프링 전환 (0) | 2022.07.18 |
#3-4. [스프링 핵심 원리-기본편] - 스프링 기본 용어 (0) | 2022.07.18 |