ContextLoaderListener 로 딩 과정 (가장 상세 한 버 전)

2741 단어 spring
다음 설명 은 가장 상세 한 spring 의 ContextLoader Listener 로 딩 과정 입 니 다. 하나 도 없습니다.
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 를 불 러 왔 습 니 다.
아직 못 알 아 보 셨 으 면 연락 주세요.

좋은 웹페이지 즐겨찾기