Package com.spidercache.web

Source Code of com.spidercache.web.SimplestServer

package com.spidercache.web;

import org.eclipse.jetty.server.Server;
import com.spidercache.node.Node;

public class SimplestServer {

  public static void main(String[] args) throws Exception {

    Node n = new Node("/home/michael/cache");
    Server server = new Server(8080);
    server.setHandler(new HelloHandler(n));

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

  }

}
TOP

Related Classes of com.spidercache.web.SimplestServer

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.