[Spring] 컨테이너에 등록된 빈 조회 방법
2024. 7. 16. 09:27ㆍ프레임워크(Framework)/Spring
public class ApplicationContextInfoTest {
AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(AppConfig.class);
@Test
@DisplayName("모든 빈 출력하기")
void findAllBean() {
String[] beanDefinitionNames = ac.getBeanDefinitionNames();
for (String beanDefinitionName : beanDefinitionNames) {
Object bean = ac.getBean(beanDefinitionName); //타입을 모르기 때문에 Object로 지정된 것임
System.out.println("name = " + beanDefinitionName + " object = " + bean);
}
}
//내가 등록한 빈만 출력하기
@Test
@DisplayName("애플리케이션 빈 출력하기")
void findApplicationBean() {
String[] beanDefinitionNames = ac.getBeanDefinitionNames();
for (String beanDefinitionName : beanDefinitionNames) {
BeanDefinition beanDefinition = ac.getBeanDefinition(beanDefinitionName);
//Role ROLE_APPLICATION: 직접 등록한 애플리케이션 빈
//Role ROLE_INFRASTRUCTURE: 스프링이 내부에서 사용하는 빈
if (beanDefinition.getRole() == BeanDefinition.ROLE_APPLICATION) {
Object bean = ac.getBean(beanDefinitionName);
System.out.println("name = " + beanDefinitionName + " object = " + bean);
}
}
}
}
'프레임워크(Framework) > Spring' 카테고리의 다른 글
[Spring] 스프링과 스프링 부트 (0) | 2024.08.10 |
---|---|
[Spring] Entity 클래스에서 생성자, getter, setter를 선언하는 이유 (0) | 2024.07.13 |
[Spring] Service를 Interface로 생성하는 이유 4가지 (0) | 2024.07.13 |
[Spring] IntelliJ Live template (0) | 2024.04.18 |
[Spring Boot] WebSecurityConfigurerAdpater 지원 안함 (0) | 2024.03.18 |