일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 한정 분기
- php 프로그래밍 입문 예제
- 자바 스프링
- C언어
- programmers
- 플러터
- Flutter
- php 프로그래밍 입문 3판
- Java
- 페이코 초대코드
- php 프로그래밍 입문 문제풀이
- 스프링
- 페이코 추천인
- 페이코 추천인코드
- 배열
- php 프로그래밍 입문
- 최단 경로
- php 프로그래밍 입문 솔루션
- php 프로그래밍 입문 연습문제
- SWEA
- php 프로그래밍
- 파이썬
- 백준
- php
- 플러터 개발환경 설정
- 자바
- spring
- 페이코 친구코드
- C
- JAVA SPRING
Archives
- Today
- Total
11-07 20:22
ImJay
[Java Spring] 2-27. 스프링 빈 조회 - 동일한 타입이 둘 이상 본문
반응형
[Java Spring] 2-27. 스프링 빈 조회 - 동일한 타입이 둘 이상
1. 타입으로 조회시 같은 타입의 스프링 빈이 둘 이상이면 오류가 발생한다. 이때는 빈 이름을 지정하자.
- ac.getBeansOfType() 을 사용하면 해당 타입의 모든 빈을 조회할 수 있다.
2. beanfind 패키지 내에 ApplicationContextSameBeanFindTest 클래스 생성
3. 코드 작성
package hello.core.beanfind;
import hello.core.AppConfig;
import hello.core.discount.DiscountPolicy;
import hello.core.member.MemberRepository;
import hello.core.member.MemoryMemberRepository;
import org.junit.jupiter.api.Assertions;
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 ApplicationContextSameBeanFindTest {
AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(SameBeanConfig.class);
@Test
@DisplayName("타입으로 조회시 같은 타입이 둘 이상 있으면, 중복 오류가 발생한다")
void findBeanByTypeDuplicate() {
assertThrows(NoUniqueBeanDefinitionException.class,
() -> ac.getBean(MemberRepository.class));
}
@Test
@DisplayName("타입으로 조회시 같은 타입이 둘 이상 있으면, 빈 이름을 지정하면 된다")
void findBeanByName() {
MemberRepository memberRepository = ac.getBean("memberRepository1", MemberRepository.class);
assertThat(memberRepository).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 memberRepository1() {
return new MemoryMemberRepository();
}
@Bean
public MemberRepository memberRepository2() {
return new MemoryMemberRepository();
}
}
}
4. 빌드
반응형
'Java Spring > 스프링 핵심 원리 - 기본편' 카테고리의 다른 글
[Java Spring] 2-29. BeanFactory와 ApplicationContext (0) | 2023.03.07 |
---|---|
[Java Spring] 2-28. 스프링 빈 조회 - 상속관계 (0) | 2023.03.07 |
[Java Spring] 2-26. 스프링 빈 조회 - 기본 (0) | 2023.03.07 |
[Java Spring] 2-25. 컨테이너에 등록된 모든 빈 조회 (0) | 2023.03.07 |
[Java Spring] 2-24. 스프링 컨테이너 생성 (0) | 2023.03.02 |
Comments