Package ign.middleman.boot

Source Code of ign.middleman.boot.Jetty

package ign.middleman.boot;

import org.mortbay.jetty.Server;
import org.mortbay.jetty.webapp.WebAppContext;


/**
* User: cpatni
* Date: Aug 7, 2010
*/
@SuppressWarnings("")
public class Jetty {
    public static void main(String[] args) throws Exception {
        Server server = new Server(8083);

        WebAppContext webapp = new WebAppContext();
        webapp.setContextPath("/");
        webapp.setWar("src/main/webapp");
        server.setHandler(webapp);

        server.start();
        server.join();


    }
}
TOP

Related Classes of ign.middleman.boot.Jetty

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.