ContextLoaderListener 로 딩 과정 (가장 상세 한 버 전)
2741 단어 spring
ContextLoader Listener 는 ServletContextListener 인 터 페 이 스 를 실 현 했 습 니 다. ServletContextListener 는 자바 EE 표준 인터페이스 중 하나 로 tomcat, Jetty 와 같은 자바 용기 가 시 작 될 때 이 인터페이스의 contextInitialized 를 촉발 합 니 다.
1. 자바 용기 작 동 은 ContextLoaderListener 의 contextInitialized 를 촉발 합 니 다.
2 contextInitialized 방법 은 ContextLoader 의 initWebApplication Context 방법 을 호출 합 니 다.
3 initWebapplicationContext 에서 createWebapplicationContext 방법 을 호출 합 니 다.
4 createWebapplicationContext 호출 determineContextClass 방법
5 determine ContextClass 는 다음 과 같은 코드 가 있 습 니 다.
contextClassName = defaultStrategies
.getProperty(WebApplicationContext.class.getName());
분명히 default Strategies 에서 불 러 온 것 입 니 다.
ContextLoader 클래스 에 정적 코드 가 있 습 니 다.
static {
try {
ClassPathResource resource = new ClassPathResource(
"ContextLoader.properties", ContextLoader.class);
defaultStrategies = PropertiesLoaderUtils.loadProperties(resource);
} catch (IOException ex) {
throw new IllegalStateException(
"Could not load 'ContextLoader.properties': "
+ ex.getMessage());
}
currentContextPerThread = new ConcurrentHashMap(1);
}
ContextLoader. properties 파일 내용 은 다음 과 같 습 니 다.
org.springframework.web.context.WebApplicationContext=org.springframework.web.context.support.XmlWebApplicationContext
이로써 determineContextClass 방법 은 XmlWebApplication Context 를 되 돌려 줍 니 다.
6 initWebApplication Context 방법 으로 돌아 가 configure AndrRefreshWebApplication Context 방법 을 호출 합 니 다.
7 configureAndRefresh 웹 응용 프로그램 Context 는 AbstractApplication Context 의 refresh 방법 을 호출 하 였 습 니 다.
8 refresh 방법 은 obtainFreshBeanFactory 를 호출 하 였 습 니 다.
9. obtainFreshBeanFactory 는 AbstractRefreshable Application Context 류 의 refreshBeanFactory 방법 을 호출 했다.
10 refreshBeanFactory 에서 XmlWebApplication Context 의 loadBeanDefinitions 를 호출 하 였 습 니 다.
11 loadBeanDefinitions 에 대응 하 는 applicationContext. xml 를 불 러 왔 습 니 다.
아직 못 알 아 보 셨 으 면 연락 주세요.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
thymeleaf로 HTML 페이지를 동적으로 만듭니다 (spring + gradle)지난번에는 에서 화면에 HTML을 표시했습니다. 이번에는 화면을 동적으로 움직여보고 싶기 때문에 입력한 문자를 화면에 표시시키고 싶습니다. 초보자의 비망록이므로 이상한 점 등 있으면 지적 받을 수 있으면 기쁩니다! ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.