Guest User

Java DB - derby start server output

a guest
Oct 21st, 2020
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.70 KB | None | 0 0
  1. Usage: java [options] <mainclass> [args...]
  2. (to execute a class)
  3. or java [options] -jar <jarfile> [args...]
  4. (to execute a jar file)
  5. or java [options] -m <module>[/<mainclass>] [args...]
  6. java [options] --module <module>[/<mainclass>] [args...]
  7. (to execute the main class in a module)
  8. or java [options] <sourcefile> [args]
  9. (to execute a single source-file program)
  10.  
  11. Arguments following the main class, source file, -jar <jarfile>,
  12. -m or --module <module>/<mainclass> are passed as the arguments to
  13. main class.
  14.  
  15. where options include:
  16.  
  17. -cp <class search path of directories and zip/jar files>
  18. -classpath <class search path of directories and zip/jar files>
  19. --class-path <class search path of directories and zip/jar files>
  20. A ; separated list of directories, JAR archives,
  21. and ZIP archives to search for class files.
  22. -p <module path>
  23. --module-path <module path>...
  24. A ; separated list of directories, each directory
  25. is a directory of modules.
  26. --upgrade-module-path <module path>...
  27. A ; separated list of directories, each directory
  28. is a directory of modules that replace upgradeable
  29. modules in the runtime image
  30. --add-modules <module name>[,<module name>...]
  31. root modules to resolve in addition to the initial module.
  32. <module name> can also be ALL-DEFAULT, ALL-SYSTEM,
  33. ALL-MODULE-PATH.
  34. --list-modules
  35. list observable modules and exit
  36. -d <module name>
  37. --describe-module <module name>
  38. describe a module and exit
  39. --dry-run create VM and load main class but do not execute main method.
  40. The --dry-run option may be useful for validating the
  41. command-line options such as the module system configuration.
  42. --validate-modules
  43. validate all modules and exit
  44. The --validate-modules option may be useful for finding
  45. conflicts and other errors with modules on the module path.
  46. -D<name>=<value>
  47. set a system property
  48. -verbose:[class|module|gc|jni]
  49. enable verbose output for the given subsystem
  50. -version print product version to the error stream and exit
  51. --version print product version to the output stream and exit
  52. -showversion print product version to the error stream and continue
  53. --show-version
  54. print product version to the output stream and continue
  55. --show-module-resolution
  56. show module resolution output during startup
  57. -? -h -help
  58. print this help message to the error stream
  59. --help print this help message to the output stream
  60. -X print help on extra options to the error stream
  61. --help-extra print help on extra options to the output stream
  62. -ea[:<packagename>...|:<classname>]
  63. -enableassertions[:<packagename>...|:<classname>]
  64. enable assertions with specified granularity
  65. -da[:<packagename>...|:<classname>]
  66. -disableassertions[:<packagename>...|:<classname>]
  67. disable assertions with specified granularity
  68. -esa | -enablesystemassertions
  69. enable system assertions
  70. -dsa | -disablesystemassertions
  71. disable system assertions
  72. -agentlib:<libname>[=<options>]
  73. load native agent library <libname>, e.g. -agentlib:jdwp
  74. see also -agentlib:jdwp=help
  75. -agentpath:<pathname>[=<options>]
  76. load native agent library by full pathname
  77. -javaagent:<jarpath>[=<options>]
  78. load Java programming language agent, see java.lang.instrument
  79. -splash:<imagepath>
  80. show splash screen with specified image
  81. HiDPI scaled images are automatically supported and used
  82. if available. The unscaled image filename, e.g. image.ext,
  83. should always be passed as the argument to the -splash option.
  84. The most appropriate scaled image provided will be picked up
  85. automatically.
  86. See the SplashScreen API documentation for more information
  87. @argument files
  88. one or more argument files containing options
  89. -disable-@files
  90. prevent further argument file expansion
  91. --enable-preview
  92. allow classes to depend on preview features of this release
  93. To specify an argument for a long option, you can use --<name>=<value> or
  94. --<name> <value>.
  95.  
  96.  
Add Comment
Please, Sign In to add comment