예제 #1
0
 protected void doStart() throws Exception {
   super.doStart();
   this.jetty =
       new JettyService(
           getBundleContext(),
           getDispatcherServlet(),
           getEventDispatcher(),
           getHttpServiceController());
   this.jetty.start();
 }
예제 #2
0
 protected void doStop() throws Exception {
   this.jetty.stop();
   super.doStop();
 }