Package com.nabalive.framework.web

Examples of com.nabalive.framework.web.HttpServer.start()


    public static void main(String args[]) throws InterruptedException {
        final HttpServer httpServer = new HttpServer();
        httpServer.setRestHandler(new MyRestHandler());

        httpServer.start();

        Thread.sleep(Long.MAX_VALUE);
    }
}
View Full Code Here


        ap = new ClassPathXmlApplicationContext(configs);
        final HttpServer httpserver = ap.getBean("httpserver", HttpServer.class);

        httpserver.setPort(Integer.parseInt(System.getProperty("port", "8999")));

        httpserver.start();
        System.out.println("HTTP STARTED");
    }

    public static void main(String[] args) throws InterruptedException {
//        new App(new String[] {"/com/ma/mongo/core/bean.xml","/bean.xml"});
View Full Code Here

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.