01: /*
02: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
03: *
04: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
05: *
06: * The contents of this file are subject to the terms of either the GNU General
07: * Public License Version 2 only ("GPL") or the Common Development and Distribution
08: * License("CDDL") (collectively, the "License"). You may not use this file except in
09: * compliance with the License. You can obtain a copy of the License at
10: * http://www.netbeans.org/cddl-gplv2.html or nbbuild/licenses/CDDL-GPL-2-CP. See the
11: * License for the specific language governing permissions and limitations under the
12: * License. When distributing the software, include this License Header Notice in
13: * each file and include the License file at nbbuild/licenses/CDDL-GPL-2-CP. Sun
14: * designates this particular file as subject to the "Classpath" exception as
15: * provided by Sun in the GPL Version 2 section of the License file that
16: * accompanied this code. If applicable, add the following below the License Header,
17: * with the fields enclosed by brackets [] replaced by your own identifying
18: * information: "Portions Copyrighted [year] [name of copyright owner]"
19: *
20: * Contributor(s):
21: *
22: * The Original Software is NetBeans. The Initial Developer of the Original Software
23: * is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun Microsystems, Inc. All
24: * Rights Reserved.
25: *
26: * If you wish your version of this file to be governed by only the CDDL or only the
27: * GPL Version 2, indicate your decision by adding "[Contributor] elects to include
28: * this software in this distribution under the [CDDL or GPL Version 2] license." If
29: * you do not indicate a single choice of license, a recipient has the option to
30: * distribute your version of this file under either the CDDL, the GPL Version 2 or
31: * to extend the choice of license to its licensees as provided above. However, if
32: * you add GPL Version 2 code and therefore, elected the GPL Version 2 license, then
33: * the option applies only if the new code is made subject to such option by the
34: * copyright holder.
35: */
36:
37: package org.server.impl;
38:
39: import java.io.IOException;
40: import javax.servlet.ServletException;
41: import javax.servlet.http.HttpServlet;
42: import javax.servlet.http.HttpServletRequest;
43: import javax.servlet.http.HttpServletResponse;
44: import org.*;
45: import org.mortbay.jetty.Handler;
46: import org.mortbay.jetty.Server;
47: import org.mortbay.jetty.handler.ContextHandler;
48: import org.mortbay.jetty.handler.DefaultHandler;
49: import org.mortbay.jetty.handler.ResourceHandler;
50: import org.mortbay.jetty.servlet.Context;
51: import org.mortbay.jetty.servlet.ServletHandler;
52: import org.mortbay.jetty.servlet.ServletHolder;
53: import org.server.*;
54:
55: /**
56: *
57: * @author Danila_Dugurov
58: */
59: public class DefaultJettyServer extends AbstractServer {
60:
61: private Server httpServer;
62:
63: public DefaultJettyServer(String testDataPath, int serverPort) {
64: super (testDataPath, serverPort);
65: }
66:
67: public void start() throws Exception {
68: if (httpServer == null)
69: httpServer = new Server(serverPort);
70: if (httpServer.isRunning())
71: return;
72: final ResourceHandler handler = new ResourceHandler();
73: handler.setResourceBase(testDataPath);
74: // Context redirect = new Context(httpServer,"/",Context.SESSIONS);
75: // redirect.addServlet(new ServletHolder(new RedirectServlet()), "/redirect/*");
76: ServletHandler redirectServlet = new ServletHandler();
77: redirectServlet.addServletWithMapping(RedirectServlet.class,
78: "/redirect/*");
79: httpServer.addHandler(handler);
80: httpServer.addHandler(redirectServlet);
81: httpServer.start();
82: }
83:
84: public void stop() throws Exception {
85: if (httpServer == null && httpServer.isStopped())
86: return;
87: httpServer.stop();
88: }
89: }
|