/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package simpleserver; import java.io.IOException; /** * * @author Michael */ public class Main { public static final int POOL_SIZE = 4; public static final String BASE_PATH = "C:\\pages\\"; public static ConnectionListener listener; /** * @param args the command line arguments */ public static void main(String[] args) throws Exception { listener = new ConnectionListener(); listener.join(); } }