Component 的创建和启动

SpringServerServlet继承了ServerServlet, 在web.xml声明了SpringServerServlet。
当Tomcat启动的时候,会调用ServerServlet的init()方法。
这是Restlet启动的开始点!


一、init()方法
1、ServerServlet init()方法先获取 component :
Component component = getComponent();
2、然后启动component
component.start();

二、getComponent()方法

1、getComponent()方法首先调用createComponent()创建compoennt
Compoennt component = createComponent();

createComponent的方法在SpringServerServlet 中提供了一个实现。

SpringServerServlet 从Spring环境中以 org.restlet.component 为键值,获取 Component 的实例。如果没有,则创建一个新的 Component 实例。

这时候,Component实例没有设置 defaultTarget 的值。
2、然后调用 init(component)初始化,完成一些参数的传递
init(component);

三、component.start()方法
此方法在 ServerServlet 类中 init()方法中。
复制代码
  1. public synchronized void start() throws Exception {
  2. if (isStopped()) {
  3. startClients();
  4. startServers();
  5. startRouters();
  6. startServices();
  7. startRealms();
  8. startHelper();
  9. super.start();
  10. }
  11. }

其中 startRouters 如下,internalRouter、defaultHost 和 host都是在这里启动的:

复制代码
  1. protected synchronized void startRouters() throws Exception {
  2. if (this.internalRouter != null) {
  3. this.internalRouter.start();
  4. }
  5. if (this.defaultHost != null) {
  6. this.defaultHost.start();
  7. }
  8. for (VirtualHost host : getHosts()) {
  9. host.start();
  10. }
  11. }



你可能感兴趣的:(Component 的创建和启动)