SpringBoot 에서 applicationContext 를 가 져 오 는 세 가지 방법

Application Context 가 뭐 예요?
쉽게 말 하면 Spring 의 용기 로 용기 에 있 는 각종 bean 구성 요 소 를 가 져 오고 감청 사건 을 등록 하 며 자원 파일 을 불 러 오 는 등 기능 을 할 수 있 습 니 다.
응용 프로그램 Context 에서 가 져 오 는 몇 가지 방식
1 직접 Autowired 주입 사용

@Component
public class Book1 {

 @Autowired
 private ApplicationContext applicationContext;

 public void show (){
  System.out.println(applicationContext.getClass());
 }
}
2.spring 4.3 의 새로운 특성 활용
spring 4.3 의 새로운 특성 을 사용 하지만 한계 가 있 으 므 로 다음 과 같은 두 가 지 를 만족 시 켜 야 합 니 다.
1)구조 함 수 는 하나만 있 을 수 있 습 니 다.여러 개 있 으 면 매개 변수 가 없 는 구조 함수 가 있어 야 합 니 다.이때 spring 은 인삼 이 없 는 구조 함 수 를 호출 합 니 다.
2)구조 함수 의 매개 변 수 는 spring 용기 에 존재 해 야 합 니 다.

@Component
public class Book2 {

 private ApplicationContext applicationContext;

 public Book2(ApplicationContext applicationContext){
  System.out.println(applicationContext.getClass());
  this.applicationContext=applicationContext;
 }

 public void show (){
  System.out.println(applicationContext.getClass());
 }

}
3 스프링 이 제공 하 는 인터페이스 응용 프로그램 ContextAware 실현
spring 은 bean 초기 화 후 applicationContextAware 의 하위 클래스 인지 판단 하고 setapplicationContext()방법 을 호출 하여 용기 에 있 는 applicationContext 를 들 여 옵 니 다.

@Component
public class Book3 implements ApplicationContextAware {

 private ApplicationContext applicationContext;

 public void show (){
  System.out.println(applicationContext.getClass());
 }

 @Override
 public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
  this.applicationContext = applicationContext;
 }
}
결과 획득 3 회:

class org.springframework.context.annotation.AnnotationConfigApplicationContext
class org.springframework.context.annotation.AnnotationConfigApplicationContext
class org.springframework.context.annotation.AnnotationConfigApplicationContext
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기