Server->Service->容器/連接器/日志器等,于是可通過父組件負責啟動/關閉它的子組件,這樣只要啟動Catali" />

亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

Tomcat源碼分析(七)--單一啟動/關閉機制(生命周

系統 3089 0
本系列轉載自?http://blog.csdn.net/haitao111313/article/category/1179996? ?

在前面的大部分文章都是講連接器和容器的,以后的內容會偏向寫一些Tomcat的其他組件以及一些細節的東西。

? ?Tomcat有很多組件,要一個一個啟動組件難免有點麻煩。由于Tomcat的包含關系是Catalina->Server->Service->容器/連接器/日志器等,于是可通過父組件負責啟動/關閉它的子組件,這樣只要啟動Catalina,其他的都自動啟動了。這種單一啟動和關閉的機制是通過實現Lifecycle接口來實現的。下面是Lifecycle接口的定義:

  1. public ? interface ?Lifecycle?{??
  2. ???? public ? static ? final ?String?START_EVENT?=? "start" ;? //生命周期的六個事件類型! ??
  3. ???? public ? static ? final ?String?BEFORE_START_EVENT?=? "before_start" ;??
  4. ???? public ? static ? final ?String?AFTER_START_EVENT?=? "after_start" ;??
  5. ???? public ? static ? final ?String?STOP_EVENT?=? "stop" ;??
  6. ???? public ? static ? final ?String?BEFORE_STOP_EVENT?=? "before_stop" ;??
  7. ???? public ? static ? final ?String?AFTER_STOP_EVENT?=? "after_stop" ;??
  8. ???
  9. ???? public ? void ?addLifecycleListener(LifecycleListener?listener); //在此組件中添加一個監聽器 ??
  10. ???? public ?LifecycleListener[]?findLifecycleListeners();??
  11. ???? public ? void ?removeLifecycleListener(LifecycleListener?listener);??
  12. ???? public ? void ?start()? throws ?LifecycleException; //組件啟動方法 ??
  13. ???? public ? void ?stop()? throws ?LifecycleException;??
  14. }??

當組件實現了Lifecycle接口,父組件啟動的時候,即調用start方法時,只要在父組件的start方法中也調用子組件的start方法即可(只有實現統一的接口Lifecycle才能實現統一調用,如以下調用方式:(Lifecycle)子組件.start()),下面一步一步來看源代碼,首先在Catalina啟動start,部分代碼如下:

  1. //?Start?the?new?server ??
  2. ???????? if ?(server? instanceof ?Lifecycle)?{??
  3. ???????????? try ?{??
  4. ????????????????server.initialize();??
  5. ????????????????((Lifecycle)?server).start(); //啟動server ??
  6. ???????????????? try ?{??
  7. ???????????????????? //?Register?shutdown?hook ??
  8. ????????????????????Runtime.getRuntime().addShutdownHook(shutdownHook);??
  9. ????????????????}? catch ?(Throwable?t)?{??
  10. ???????????????????? //?This?will?fail?on?JDK?1.2.?Ignoring,?as?Tomcat?can?run ??
  11. ???????????????????? //?fine?without?the?shutdown?hook. ??
  12. ????????????????}??
  13. ???????????????? //?Wait?for?the?server?to?be?told?to?shut?down ??
  14. ????????????????server.await();??
  15. ????????????}? catch ?(LifecycleException?e)?{??
  16. ????????????????System.out.println( "Catalina.start:?" ?+?e);??
  17. ????????????????e.printStackTrace(System.out);??
  18. ???????????????? if ?(e.getThrowable()?!=? null )?{??
  19. ????????????????????System.out.println( "-----?Root?Cause?-----" );??
  20. ????????????????????e.getThrowable().printStackTrace(System.out);??
  21. ????????????????}??
  22. ????????????}??
  23. ????????}??
關鍵看((Lifecycle) server).start();這樣便在啟動Catalina的時候啟動了Server,再看StandardServer的start方法:

  1. public ? void ?start()? throws ?LifecycleException?{??
  2. ??
  3. ???? //?Validate?and?update?our?current?component?state ??
  4. ???? if ?(started)??
  5. ???????? throw ? new ?LifecycleException??
  6. ????????????(sm.getString( "standardServer.start.started" ));??
  7. ???? //?Notify?our?interested?LifecycleListeners ??
  8. ???? //發送這個事件 ??
  9. ????lifecycle.fireLifecycleEvent(BEFORE_START_EVENT,? null ); //發送生命周期事件。 ??
  10. ??
  11. ????lifecycle.fireLifecycleEvent(START_EVENT,? null );??
  12. ????started?=? true ;??
  13. ??
  14. ???? //?Start?our?defined?Services ??
  15. ???? synchronized ?(services)?{??? //由這里也可以看出一個server可以有多個services ??
  16. ???????? for ?( int ?i?=? 0 ;?i?<?services.length;?i++)?{??
  17. ???????????? if ?(services[i]? instanceof ?Lifecycle)??
  18. ????????????????((Lifecycle)?services[i]).start();??
  19. ????????}??
  20. ????}??
  21. ??
  22. ???? //?Notify?our?interested?LifecycleListeners ??
  23. ????lifecycle.fireLifecycleEvent(AFTER_START_EVENT,? null );??
  24. ??
  25. }??
主要做了兩件事,1:發送生命周期事件給監聽者;2:啟動子組件services(至于server怎么關聯上services請看前面的幾篇文章,以后都不再題怎么關聯上的了)。

這里先岔開一下,說一下監聽器,lifecycle是一個工具類LifecycleSupport的實例,每一個組件都有這樣一個工具類,這個工具類的作用就是幫助管理該組件上的監聽器,包括添加監聽器和群發事件給監聽器,看LifecycleSupport類的一些關鍵代碼:

  1. public ? final ? class ?LifecycleSupport?{??
  2. public ?LifecycleSupport(Lifecycle?lifecycle)?{??
  3. ??
  4. ???????? super ();??
  5. ???????? this .lifecycle?=?lifecycle;??
  6. ??
  7. ????}??
  8. ?? private ?LifecycleListener?listeners[]?=? new ?LifecycleListener[ 0 ];??
  9. ? public ? void ?addLifecycleListener(LifecycleListener?listener)?{? //向listeners添加監聽器 ??
  10. ??
  11. ?????? synchronized ?(listeners)?{??
  12. ??????????LifecycleListener?results[]?=??
  13. ???????????? new ?LifecycleListener[listeners.length?+? 1 ];??
  14. ?????????? for ?( int ?i?=? 0 ;?i?<?listeners.length;?i++)??
  15. ??????????????results[i]?=?listeners[i];??
  16. ??????????results[listeners.length]?=?listener;??
  17. ??????????listeners?=?results;??
  18. ??????}??
  19. ??
  20. ????}??
  21. ? public ? void ?fireLifecycleEvent(String?type,?Object?data)?{ //群發事件給監聽器 ??
  22. ??
  23. ????????LifecycleEvent?event?=? new ?LifecycleEvent(lifecycle,?type,?data);??
  24. ????????LifecycleListener?interested[]?=? null ;??
  25. ???????? synchronized ?(listeners)?{??
  26. ????????????interested?=?(LifecycleListener[])?listeners.clone();??
  27. ????????}??
  28. ???????? for ?( int ?i?=? 0 ;?i?<?interested.length;?i++)??
  29. ????????????interested[i].lifecycleEvent(event); //發送組件生命周期事件。 ??
  30. ??
  31. ????}??
  32. }??
先看構造方法,傳入一個lifecycle,因為每個組件都實現了lifecycle,所以這里傳入的實際上是一個組件,即每個組件都有一個LifecycleSupport與之關聯,當要在組件中添加一個監聽器的時候,實際上是添加進工具類LifecycleSupport的一個監聽器數組listeners中,當要發送一個組件生命周期的事件時,工具類就會遍歷監聽器數組,然后再一個一個的發送事件。這里需要先實現我們自己的監聽器類并且添加進我們需要監聽的組件當中。實現監聽器類只要實現LifecycleListener接口就行,這個接口只有一個方法:

  1. public ? interface ?LifecycleListener?{??
  2. ???? public ? void ?lifecycleEvent(LifecycleEvent?event);??
  3. }??

我們需要做的就是實現LifecycleListener接口來擁有自己的監聽器,在lifecycleEvent方法里寫自己監聽到事件后該做的事情,然后添加進要監聽的組件就行,比如當我們要看StandardServer是否啟動了,在上面StandardServer的start方法有一句這樣的代碼:lifecycle.fireLifecycleEvent(START_EVENT, null);即發送StandardServer啟動的事件給跟它關聯的監聽器。接下來回到一開始,當server啟動后,接著啟動它的子組件service,即調用StandardService的start方法,這個方法跟StandardServer的start方法差不多,只是啟動了連接器和容器,連接器的start方法在前面的文章已經講過了,主要是啟動了n個處理器HttpProcessor組件。頂級容器是StandardEngine,它的start方法僅僅調用了父類ContainerBase的start方法,下面看ContainerBase的start方法:

  1. public ? synchronized ? void ?start()? throws ?LifecycleException?{??
  2. ??
  3. ????? //?Validate?and?update?our?current?component?state ??
  4. ????? if ?(started)??
  5. ????????? throw ? new ?LifecycleException??
  6. ?????????????(sm.getString( "containerBase.alreadyStarted" ,?logName()));??
  7. ??
  8. ????? //?Notify?our?interested?LifecycleListeners ??
  9. ?????lifecycle.fireLifecycleEvent(BEFORE_START_EVENT,? null );??
  10. ??
  11. ?????addDefaultMapper( this .mapperClass);??
  12. ?????started?=? true ;??
  13. ??
  14. ????? //?Start?our?subordinate?components,?if?any ??
  15. ????? if ?((loader?!=? null )?&&?(loader? instanceof ?Lifecycle))? //啟動所有其他的組件 ??
  16. ?????????((Lifecycle)?loader).start();??
  17. ????? if ?((logger?!=? null )?&&?(logger? instanceof ?Lifecycle))??
  18. ?????????((Lifecycle)?logger).start();??
  19. ????? if ?((manager?!=? null )?&&?(manager? instanceof ?Lifecycle))??
  20. ?????????((Lifecycle)?manager).start();??
  21. ????? if ?((cluster?!=? null )?&&?(cluster? instanceof ?Lifecycle))??
  22. ?????????((Lifecycle)?cluster).start();??
  23. ????? if ?((realm?!=? null )?&&?(realm? instanceof ?Lifecycle))??
  24. ?????????((Lifecycle)?realm).start();??
  25. ????? if ?((resources?!=? null )?&&?(resources? instanceof ?Lifecycle))??
  26. ?????????((Lifecycle)?resources).start();??
  27. ??
  28. ????? //?Start?our?Mappers,?if?any ??
  29. ?????Mapper?mappers[]?=?findMappers();??
  30. ????? for ?( int ?i?=? 0 ;?i?<?mappers.length;?i++)?{??
  31. ????????? if ?(mappers[i]? instanceof ?Lifecycle)??
  32. ?????????????((Lifecycle)?mappers[i]).start();??
  33. ?????}??
  34. ??
  35. ????? //?Start?our?child?containers,?if?any ??
  36. ?????Container?children[]?=?findChildren();??
  37. ????? for ?( int ?i?=? 0 ;?i?<?children.length;?i++)?{??
  38. ????????? if ?(children[i]? instanceof ?Lifecycle)??
  39. ?????????????((Lifecycle)?children[i]).start();??
  40. ?????}??
  41. ??
  42. ????? //?Start?the?Valves?in?our?pipeline?(including?the?basic),?if?any ??
  43. ????? if ?(pipeline? instanceof ?Lifecycle)??
  44. ?????????((Lifecycle)?pipeline).start();??
  45. ??
  46. ????? //?Notify?our?interested?LifecycleListeners ??
  47. ?????lifecycle.fireLifecycleEvent(START_EVENT,? null );??
  48. ??
  49. ????? //?Notify?our?interested?LifecycleListeners ??
  50. ?????lifecycle.fireLifecycleEvent(AFTER_START_EVENT,? null );??
  51. ??
  52. ?}??

這里代碼比較豐富,由它啟動了Tomcat其他所有的組件,包括加載器,映射器,日志記錄器,管道等等,由這里也可以看出,他們都實現了Lifecycle接口。統一關閉跟統一啟動的邏輯差不多,這里就不再說了。至此,我們對Tomcat怎么實現統一啟動/關閉應該有一個比較清晰的認識了!

Tomcat源碼分析(七)--單一啟動/關閉機制(生命周期)


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 久久精品免费i 国产 | 色综合久久久久综合体桃花网 | www.精品| 欧美啪啪小视频 | 国产亚洲综合成人91精品 | 色婷婷在线观看视频 | 99精品网 | 443hk四虎 在线观看 | 国产在线毛片 | 亚洲精品tv久久久久久久久久 | 久草在线中文视频 | 亚洲干综合 | 亚州综合激情另类久久久 | 99爱色| 久久福利青草精品免费 | 91国内视频 | 久久网站在线观看 | 久久香蕉国产线看观看网站 | 亚洲国产第一区二区三区 | 亚洲区欧美中文字幕久久 | 美国毛片免费观看 | 五月婷婷狠狠干 | 精品国产品国语在线不卡丶 | 四虎4hu影库免费永久国产 | 91久久| 九九热在线免费 | 羞羞视频免费网站 | 九九福利| 日韩在线视频一区 | 国产男女猛视频在线观看网站 | 最新国产一区二区精品久久 | 亚洲色图国产精品 | 国产亚洲精品久久久久久牛牛 | 好吊色青青青国产欧美日韩 | 亚洲精品免费日日日夜夜夜夜 | 国内精品久久久久久久影视麻豆 | 日日夜夜骑 | 亚洲国产婷婷俺也色综合 | 亚洲国产精品视频 | 精品在线视频播放 | 久久精品二区 |