Package com.ovea.jetty.session

Examples of com.ovea.jetty.session.JettyServer


/**
* @author Mathieu Carbou (mathieu.carbou@gmail.com)
*/
final class StartServers {
    public static void main(String... args) throws Exception {
        JettyServer container1 = new JettyServer("src/test/webapp1");
        JettyServer container2 = new JettyServer("src/test/webapp2");
        container1.start();
        container2.start();
    }
View Full Code Here

TOP

Related Classes of com.ovea.jetty.session.JettyServer

Copyright © 2018 www.massapicom. 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.