久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

詳解contextConfigLocation

 liang1234_ 2017-01-05

spring的應(yīng)用初始化流程一直沒有搞明白,,剛剛又碰到了相關(guān)的問題。決定得好好看看這個(gè)流程,。我們在開發(fā)spring的項(xiàng)目當(dāng)中基本上都會在web.xml通過:

  1. <context-param>  
  2.         <param-name>contextConfigLocation</param-name>  
  3.         <param-value>  
  4.         /WEB-INF/conf/application-*.xml  
  5.         </param-value>  
  6.     </context-param>  
來初始化各個(gè)spring的配置文件,,但是我們只是知道這段代碼的功能, 并不是很清楚我們配置了這段代碼之后為什么就能去初始化配置文件,。當(dāng)然我們還會加上:

  1. <listener>  
  2.         <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>  
  3.     </listener>  
這一個(gè)listener,,我首先就會想contextConfigLocation這個(gè)一定能在ContextLoaderListener這個(gè)類當(dāng)中找到,打開了源碼,,這個(gè)listener是實(shí)現(xiàn)了ServletContextListener這個(gè)接口的,,這個(gè)接口只有兩個(gè)方法:

  1. public interface ServletContextListener  
  2.     extends EventListener  
  3. {  
  4.   
  5.     public abstract void contextInitialized(ServletContextEvent servletcontextevent);  
  6.   
  7.     public abstract void contextDestroyed(ServletContextEvent servletcontextevent);  
  8. }  
而且它是繼承了EventListener這個(gè)接口的,打開這個(gè)接口的代碼讓我大吃一驚,,里面沒有方法啥都沒有:

  1. package java.util;  
  2.   
  3.   
  4. public interface EventListener  
  5. {  
  6. }  
而且還是java.util包下的,,并不是spring之中的東西。

這樣找了之后沒有找到,,往回退到ContextLoaderListener這個(gè)類的方法上,contextInitialized方法是用來初始化上下文的:

  1. public void contextInitialized(ServletContextEvent event)  
  2.     {  
  3.         contextLoader = createContextLoader();  
  4.         contextLoader.initWebApplicationContext(event.getServletContext());  
  5.     }  
方法中有個(gè)createContextLoader方法:

  1. protected ContextLoader createContextLoader()  
  2.     {  
  3.         return new ContextLoader();  
  4.     }  
這個(gè)方法返回了一個(gè)ContextLoader實(shí)例,,進(jìn)入到ContextLoader類中,,按ctrl f來尋找contextConfigLocation,這時(shí)沒有出現(xiàn)電腦的咚的聲音,,找到了它:

  1. protected WebApplicationContext createWebApplicationContext(ServletContext servletContext, ApplicationContext parent)  
  2.         throws BeansException  
  3.     {  
  4.         Class contextClass = determineContextClass(servletContext);  
  5.         if(!(org.springframework.web.context.ConfigurableWebApplicationContext.class).isAssignableFrom(contextClass))  
  6.         {  
  7.             throw new ApplicationContextException('Custom context class ['   contextClass.getName()   '] is not of type ['   (org.springframework.web.context.ConfigurableWebApplicationContext.class).getName()   ']');  
  8.         } else  
  9.         {  
  10.             ConfigurableWebApplicationContext wac = (ConfigurableWebApplicationContext)BeanUtils.instantiateClass(contextClass);  
  11.             wac.setParent(parent);  
  12.             wac.setServletContext(servletContext);  
  13.             wac.setConfigLocation(servletContext.getInitParameter('<span style='color:#ff0000;'>contextConfigLocation</span>'));  
  14.             customizeContext(servletContext, wac);  
  15.             wac.refresh();  
  16.             return wac;  
  17.         }  
  18.     }  
通過代碼,,ConfigurableWebApplicationContext設(shè)置了從servletContext獲取到的參數(shù)的值,再進(jìn)入ConfigurableWebApplicationContext的代碼中,,它只是一個(gè)接口,,進(jìn)入StaticWebApplicationContext的setConfigLocation方法:

  1. public void setConfigLocation(String configLocation)  
  2.     {  
  3.         if(configLocation != null)  
  4.             throw new UnsupportedOperationException('StaticWebApplicationContext does not support config locations');  
  5.         else  
  6.             return;  
  7.     }  
這個(gè)方法中很奇怪,,當(dāng)參數(shù)不為空就拋出異常,查看spring的文檔:The StaticWebApplicationContext class does not support this method.說是此類不支持這個(gè)方法,,這下子又卡住了,。又要退回去,看這句:

  1. ConfigurableWebApplicationContext wac = (ConfigurableWebApplicationContext)BeanUtils.instantiateClass(contextClass);  
spring使用BeanUtils來初始化contextClass這個(gè)類實(shí)例,,contextClass是通過以下代碼得到的:

  1. protected Class determineContextClass(ServletContext servletContext)  
  2.         throws ApplicationContextException  
  3.     {  
  4.         String contextClassName = servletContext.getInitParameter('contextClass');  
  5.         if(contextClassName != null)  
  6.             try  
  7.             {  
  8.                 return ClassUtils.forName(contextClassName);  
  9.             }  
  10.             catch(ClassNotFoundException ex)  
  11.             {  
  12.                 throw new ApplicationContextException('Failed to load custom context class ['   contextClassName   ']', ex);  
  13.             }  
  14.         contextClassName = defaultStrategies.getProperty((org.springframework.web.context.WebApplicationContext.class).getName());  
  15.         try  
  16.         {  
  17.             return ClassUtils.forName(contextClassName, (org.springframework.web.context.ContextLoader.class).getClassLoader());  
  18.         }  
  19.         catch(ClassNotFoundException ex)  
  20.         {  
  21.             throw new ApplicationContextException('Failed to load default context class ['   contextClassName   ']', ex);  
  22.         }  
  23.     }  
這里使用了反射,,再來看BeanUtils的instantiateClass方法:

  1. return instantiateClass(clazz.getDeclaredConstructor((Class[])null), null);  

通過反射得到contextClass的構(gòu)造方法。下面是instantiateClass方法的重載,,主要是下面兩句代碼:

  1. ReflectionUtils.makeAccessible(ctor);  
  2.             return ctor.newInstance(args);  
ctor是通過反射得到的contextClass的構(gòu)造方法,,args是構(gòu)造方法當(dāng)中的參數(shù)。這里為null,,說明new了contextClass的無參構(gòu)造方法,。

這時(shí)又要退回到determineContextClass 這個(gè)方法中,我們主要看:

  1. contextClassName = defaultStrategies.getProperty((org.springframework.web.context.WebApplicationContext.class).getName());  
這句代碼,,我們可以猜它是通過Properties的getProperty方法得到WebApplicationContext 的實(shí)例,,這時(shí)我們又到了WebApplicationContext 這個(gè)接口當(dāng)中,這個(gè)接口繼承了ApplicationContext這個(gè)接口,,我們都知道我們進(jìn)行spring開發(fā)都會通過Application ctx=new FileSystemXmlApplicationContext('beans.xml');或ApplicationContext ctx=new ClassPathXmlApplicationContext('beans.xml');ServletContext servletContext = request.getSession().getServletContext();ApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(servletContext);這三種方法獲得一個(gè)ApplicationContext,,然后就可以對配置文件當(dāng)中的bean進(jìn)行操作了。所以這里我們基本上已經(jīng)搞清楚初始化spring配置文件的流程了,。

總結(jié):通過查看這幾個(gè)類的源代碼,,java的反射使用范圍之廣再次體現(xiàn)出來。如看了之后覺得有錯(cuò)誤或者不同意見,,歡迎提出來,,我也是第一次才研究這個(gè)問題。


    本站是提供個(gè)人知識管理的網(wǎng)絡(luò)存儲空間,,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點(diǎn)。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購買等信息,,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點(diǎn)擊一鍵舉報(bào),。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多