johnrd

Java DB - derby start server output

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