예제 #1
0
  @Override
  public void run() {
    ContextManager.initialize();
    new Thread(new edu.atilim.acma.Server(4501, 15)).start();
    new Thread(new edu.atilim.acma.Client("localhost", 4501)).start();

    try {
      webServer.start();
    } catch (Exception e) {
      throw new RuntimeException(e);
    }
  }