Package circumflex.web

Examples of circumflex.web.StandaloneServer


      // Make plugin exit nicely
      Runtime.getRuntime().addShutdownHook(shutdownHook);
      // Inject application classpath into current plugin class loading
      prepareClassLoader();
      // Prepare standalone Jetty
      server = new StandaloneServer();
      server.start();
      // Navigate to the default browser, if possible
      if (Desktop.isDesktopSupported()) {
        Desktop.getDesktop().browse(new URI("http://127.0.0.1:" + port + "/"));
      }
View Full Code Here

TOP

Related Classes of circumflex.web.StandaloneServer

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.