tomcat加载web.xml的过程---StandardContext、ContextConfig源码分析
2021-05-02 23:30
标签:add blog 一个 config and ati tps mda init 一个Context对应一个web应用,而一个web应用应该有一个web.xml startInternal() -> fireLifecycleEvent(Lifecycle.CONFIGURE_START_EVENT, null) -> setApplicationEventListeners() configureStart() -> webConfig() -> webXmlParser.parseWebXml() (2)mergeParameters (3)启动listener (4)启动filter (5)启动servlet tomcat加载web.xml的过程---StandardContext、ContextConfig源码分析 标签:add blog 一个 config and ati tps mda init 原文地址:https://www.cnblogs.com/feng9exe/p/12125509.html
观察StandardContext的startInternal方法
-> child.start()
-> mergeParameters()
-> listenerStart()
-> setApplicationLifecycleListeners()
-> filterStart()
-> loadOnStartup(findChildren())
(1)fireLifecycleEvent
StandardContext默认会被添加ContextConfig(Llistener),此时会通知到它,观察ContextConfig的lifecycleEvent方法。
-> configureContext(webXml)
此处会使用digester读取web.xml并设置到StandardContext里。
步骤(1)中会将web.xml中的context-param元素设置到context的parameters里,此处则是把parameters设置到servletContext里。
步骤(1)中会将web.xml中的listener元素设置到context的applicationListeners里,
此处则取出listener类名,创建实例,并将listener分为两类
eventlistener:ServletRequestAttributeListener、ServletRequestListener、HttpSessionIdListener、HttpSessionAttributeListener
lifecyclelistener:ServletContextListener、HttpSessionListener
对于ServletContextListener,会调用listener.contextInitialized(event)
步骤(1)中会将web.xml中的filter元素设置到filter的filterdef里,此处则会实例化filter设置到filterConfigs里。
步骤(1)中会将web.xml中的servlet元素封装成wrapper并调用addChild方法设置到Context里,
此处则会检查是否需要loadonstartup,如果需要则load。
————————————————
版权声明:本文为CSDN博主「lbl2018」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/lblblblblzdx/article/details/80946526
文章标题:tomcat加载web.xml的过程---StandardContext、ContextConfig源码分析
文章链接:http://soscw.com/index.php/essay/81549.html