1- 테스트 코드 활용
package hello.core.beanfind;
import hello.core.AppConfig;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
public class ApplicationContextInfoTest {
AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(AppConfig.class);
@Test
@DisplayName("모든 빈 출력하기")
void findAllBean() {
String[] beanDefinitionNames = ac.getBeanDefinitionNames();
// iter 치고 tab을 누르거나 나타난 드롭 박스에서 선택해 엔터를 치면 아래와 같이 자동완성됨
for (String beanDefinitionName : beanDefinitionNames) {
// 타입 매칭을 안할 경우 Object를 리턴함
Object bean = ac.getBean(beanDefinitionName);
// soutv -> 변수명 찍어줌
// soutm -> 메서드명 찍어줌
System.out.println("name = " + beanDefinitionName + " object = " + bean);
}
}
}
package hello.core.beanfind;
import hello.core.AppConfig;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.config.BeanDefinition;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
public class ApplicationContextInfoTest {
AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(AppConfig.class);
@Test
@DisplayName("모든 빈 출력하기")
void findAllBean() {
String[] beanDefinitionNames = ac.getBeanDefinitionNames();
// iter 치고 tab을 누르거나 나타난 드롭 박스에서 선택해 엔터를 치면 아래와 같이 자동완성됨
for (String beanDefinitionName : beanDefinitionNames) {
// 타입 매칭을 안할 경우 Object를 리턴함
Object bean = ac.getBean(beanDefinitionName);
// soutv -> 변수명 찍어줌
// soutm -> 메서드명 찍어줌
System.out.println("name = " + beanDefinitionName + " object = " + bean);
}
}
@Test
@DisplayName("애플리케이션 빈 출력하기")
void findApplicationBean() {
String[] beanDefinitionNames = ac.getBeanDefinitionNames();
// iter 치고 tab을 누르거나 나타난 드롭 박스에서 선택해 엔터를 치면 아래와 같이 자동완성됨
for (String beanDefinitionName : beanDefinitionNames) {
BeanDefinition beanDefinition = ac.getBeanDefinition(beanDefinitionName);
/*
BeanDefinition은 정의된 Bean에 대한 정보를 가져올 수 있는 인터페이스
ROLE_APPLICATION : 직접 등록한 애플리케이션 빈
ROLE_INFRASTRUCTURE : 스프링이 내부에서 사용하는 빈
고로 아래 코드는 내가 등록한 Bean만 출력하자는 듯
*/
if (beanDefinition.getRole() == BeanDefinition.ROLE_APPLICATION) {
Object bean = ac.getBean(beanDefinitionName);
System.out.println("name = " + beanDefinitionName + " object = " + bean);
}
}
}
}
'Development > Spring Boot' 카테고리의 다른 글
[Spring Boot] 스프링 빈 조회 (4) 상속 관계 (0) | 2022.08.14 |
---|---|
[Spring Boot] 스프링 빈 조회 (3) 동일한 타입이 둘 이상 (0) | 2022.08.14 |
[Spring Boot] 스프링 컨테이너와 스프링 빈 (1) 생성 과정 (0) | 2022.08.13 |
[Spring Boot] 스프링 컨테이너와 스프링 빈 (0) - 이전 강의 중요 포인트 정리 (0) | 2022.08.13 |
[Spring Boot] 스프링 부트로 전환하기 (0) | 2022.08.09 |