当前位置: 首页 > news >正文

企业级网站开发学网站建设app

企业级网站开发,学网站建设app,如何查询网站的域名注册,企业邮箱免费注册入口这几天在看spring的源码&#xff0c;涉及到spring启动位置的部分&#xff0c;下面就看看spring到底是从哪儿开始加载的。本文使用的是spring3.0M3 首先spring的加载会借助一个监听器ContextLoaderListener&#xff0c;直接上web.xml文件 Xml代码 <listener> <…

这几天在看spring的源码,涉及到spring启动位置的部分,下面就看看spring到底是从哪儿开始加载的。本文使用的是spring3.0M3 

首先spring的加载会借助一个监听器ContextLoaderListener,直接上web.xml文件 

 

Xml代码   收藏代码
  1. <listener>  
  2.     <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>  
  3. </listener>  

 

 


我们通常会对加载位置统一管理   

 

 

Xml代码   收藏代码
  1. <context-param>  
  2.        <param-name>contextConfigLocation</param-name>  
  3.        <param-value>  
  4.         /WEB-INF/conf/spring/**/*.xml  
  5.        </param-value>  
  6.    </context-param>  


这个org.springframework.web.context.ContextLoaderListener类型是springframework中的原始加载上下文的监听器, 
通常我们会自定义一个Listener去继承ContextLoaderListener并另外实现我们需要初始化的接口(通常我们会选择实现一些接口来对session的管理) 

 

 

 

Java代码   收藏代码
  1. public class FrameServletContextListener extends ContextLoaderListener implements ServletContextListener,HttpSessionAttributeListener,HttpSessionListener {  
  2.     //  
  3.     private ServletContext initPath(ServletContextEvent event) {  
  4.   
  5.     }  
  6.   
  7.         public synchronized void contextDestroyed(ServletContextEvent event) {  
  8.     //  
  9.     }  
  10.   
  11.     ...  
  12. }  


当监听器设置好了之后 ,启动web容器 监听器开始启动ContextLoaderListenerl 
类中的方法contextInitialized() 

 

 

 

Java代码   收藏代码
  1. /** 
  2.  * Initialize the root web application context. 
  3.  */  
  4. public void contextInitialized(ServletContextEvent event) {  
  5.     this.contextLoader = createContextLoader();  
  6.     if (this.contextLoader == null) {  
  7.         this.contextLoader = this;  
  8.     }  
  9.     this.contextLoader.initWebApplicationContext(event.getServletContext());  
  10. }  


这样this.contextLoader.initWebApplicationContext(event.getServletContext());ContextLoaderListener 
就会借助容器的上下文去初始一个spring的应用上下文,使用到了ContextLoader这个类 



在ContextLoader初始化时我们看到这样一块static代码 

 

 

Java代码   收藏代码
  1. static {  
  2.     // Load default strategy implementations from properties file.  
  3.     // This is currently strictly internal and not meant to be customized  
  4.     // by application developers.  
  5.     try {  
  6.         //这一句会去加载同在此包下的一个properties文件的值(ContextLoader.properties)  
  7.         ClassPathResource resource = new ClassPathResource(DEFAULT_STRATEGIES_PATH, ContextLoader.class);  
  8.         defaultStrategies = PropertiesLoaderUtils.loadProperties(resource);  
  9.     }  
  10.     catch (IOException ex) {  
  11.         throw new IllegalStateException("Could not load 'ContextLoader.properties': " + ex.getMessage());  
  12.     }  
  13. }  


属性文件中这样定义 

 

 

引用

 

org.springframework.web.context.WebApplicationContext=org.springframework.web.context.support.XmlWebApplicationContext


这样我们就能根据属性文件中的定义反射出一个XmlWebApplicationContext上下文了 

然而我们在XmlWebApplicationContext中看到如下变量 

 

 

Java代码   收藏代码
  1. /** Default config location for the root context */  
  2. public static final String DEFAULT_CONFIG_LOCATION = "/WEB-INF/applicationContext.xml";  


至此我们已经知道默认加载spring文件的启动位置了 


当我们再看ContextLoader类,我们就会看到传说中的参数contextConfigLocation 

 

 

 

Java代码   收藏代码
  1. public static final String CONFIG_LOCATION_PARAM = "contextConfigLocation";  

 


而XmlWebApplicationContext对象正是调用了这个参数去设置启动位置 

 

 

Java代码   收藏代码
  1. wac.setConfigLocation(servletContext.getInitParameter(CONFIG_LOCATION_PARAM));  

 


再往上看XmlWebApplicationContext继承的AbstractRefreshableConfigApplicationContext类中的setConfigLocation方法将此抽象类中的String[] configLocations值填充 

并在AbstractRefreshableConfigApplicationContext类中我们看到spring对默认启动文件位置和配置启动文件位置的支持 

 

 

Java代码   收藏代码
  1. protected String[] getConfigLocations() {  
  2.     return (this.configLocations != null ? this.configLocations : getDefaultConfigLocations());  


至此我们已经清楚spring将从哪儿加载并知道加载哪些文件了。

 

http://www.sczhlp.com/news/144747/

相关文章:

  • 网站的优化与推广南宁排名seo公司
  • 中国网站模板下载wordpress亿级数据
  • 电天下dq123.com搜索功能全新升级,AI加持,焕新垂直行业搜索体验!
  • 中小微企业能源管理 “入门神器”:MyEMS 开源系统如何低成本实现专业级管控?
  • jinja2和角色管理和集合
  • 挖同行墙脚!有稳定供应商的客户怎么下手构建?
  • 网站建设百灵鸟优化桂林
  • 地方网站如何做竞价网站导航栏代码
  • 无法访问此网站是什么原因亦庄网站开发公司
  • 盱眙网站建设网站开发网页gif设计公司
  • 网站推广优化外链wordpress主git题
  • 建材企业网站模板淘宝刷单网站制作
  • html网站源代码vs平台做网站
  • php 企业网站管理系统大型网站化方案
  • 成华区微信网站建设网络营销十大经典案例
  • 建网站 多少钱有没有只做软装方案收设计费的网站
  • 什么网站可以免费做兼职南京网站优化步骤
  • vs网站开发 百度文库自己建网站有什么用
  • 成品网站源码在线建站之星模板下载网站
  • 视频融合平台EasyCVR在智慧工地中的应用:构建安全、智能、高效的“云上工地”
  • 开源技术崛起:中国如何构建数字经济时代的创新基础设施
  • 250928
  • 地图商业授权共享 - no
  • 杭州网站建设科技有限公司全国最大机械采购平台
  • 免费学校网站管理系统枣庄企业网站推广
  • 网站 医院信息化建设网站优化 图片
  • 六安网站建设价格网络销售新手入门
  • 时尚大气的网站设计专业的南京网站建设
  • 武安市精品网站开发怎么免费制作app
  • 会python做网站福田的网站建设公司哪家好