HEX
Server: Apache/2.4.65 (Ubuntu)
System: Linux ielts-store-v2 6.8.0-1036-gcp #38~22.04.1-Ubuntu SMP Thu Aug 14 01:19:18 UTC 2025 x86_64
User: root (0)
PHP: 7.2.34-54+ubuntu20.04.1+deb.sury.org+1
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
Upload Files
File: //snap/google-cloud-cli/current/bin/bootstrapping/java_dev_appserver.py
# Copyright 2017 Google Inc. All Rights Reserved.
#

"""A convenience wrapper for starting dev_appserver for appengine for Java."""

from __future__ import absolute_import
from __future__ import unicode_literals
import os

import bootstrapping
from googlecloudsdk.command_lib.util import java
from googlecloudsdk.core.updater import update_manager


# Path to the jar's directory relative to the SDK root
_JAR_DIR = os.path.join('platform', 'google_appengine', 'google', 'appengine',
                        'tools', 'java', 'lib')

# Filename of the jar
_JAR_NAME = 'appengine-tools-api.jar'

# Flags, (enable assertions)
_FLAGS = ['-ea']

# Name of the main class
_CLASSNAME = 'com.google.appengine.tools.KickStart'

# Additional arguments, comes before sys.argv.
# The KickStart main class accepts this classname as its first arg
_ARGS = [
    'com.google.appengine.tools.development.DevAppServerMain',
    '--promote_yaml'
]


def main():
  """Launches the Java dev_appserver 1."""
  update_manager.UpdateManager.EnsureInstalledAndRestart(
      ['app-engine-java'],
      command=__file__)
  java_bin = java.RequireJavaInstalled('Java local development server')
  bootstrapping.ExecuteJarTool(
      java_bin, _JAR_DIR, _JAR_NAME, _CLASSNAME, _FLAGS, *_ARGS)


if __name__ == '__main__':
  bootstrapping.DisallowIncompatiblePythonVersions()
  bootstrapping.CommandStart('dev_appserver_java', component_id='core')
  bootstrapping.CheckUpdates('dev_appserver_java')
  main()