Package play.modules.gae

Examples of play.modules.gae.PlayDevEnvironment


    }
   
    public static void adminConsole(){
      if(Play.mode == Mode.DEV){
        if(!GAEAdminConsoleServer.isRunning()){
          PlayDevEnvironment devEnvironment = ((GAEPlugin) Play.pluginCollection.getPluginInstance(GAEPlugin.class)).devEnvironment;
          int port = Integer.parseInt(Play.configuration.getProperty("gae.adminConsole.port", "9050"));
          GAEAdminConsoleServer.launch(devEnvironment, port);
        }
        renderArgs.put("baseUrl", GAEAdminConsoleServer.getBaseURL());
        render();
View Full Code Here

TOP

Related Classes of play.modules.gae.PlayDevEnvironment

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.