You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| --jvm-vm-type | vm_type | auto | Defines the VM to run on. Possible values are `auto`, `jvm`, `graal_native_image` and `art`. When set to `graal_native_image` it uses Graal native image. This has no effect on android platform. |`--jvm-vm-type=jvm` or `vm-type=jvm`|
11
-
| --jvm-use-debug | use_debug | false | Defines if the jvm debug server should be started. |`--jvm-use_debug` or `use_debug=true`|
12
-
| --jvm-debug-port | debug_port | 5005 | Defines the port to which you can attach a remote debugger. **Note:** the module `jdk.jdwp.agent` is needed in the embedded JRE if you want to debug your application. If you need `jmx`, also the module `jdk.management.agent` is needed |`--jvm-debug-port=5005` or `debug-port=5005`|
13
-
| --jvm-debug-address | debug_address | localhost | Defines which adresses are allowed for debugging |`--jvm-debug-address=localhost` or `debug-address=localhost`|
14
-
| --jvm-wait-for-debugger | wait_for_debugger | true | Accepted values: `true` or `false`. Defines if the jvm should suspend execution until a remote debugger is attached. Only effective if either `--jvm-debug-port` or `--jvm-debug-address` is set |`--wait-for-debugger` or `wait-for-debugger=true`|
15
-
| --jvm-jmx-port | jmx_port | -1 (disabled) | Defines the jmx port. **Note:** the module `jdk.management.agent` is needed in the embedded JRE to be able to use jmx |`--jvm-jmx-port=5006` or `jmx-port=5006`|
16
-
| --jvm-max-string-size | max_string_size | 512 | Maximum size of strings sent through the buffer. When above that value, strings are sent with a slower JNI Call. A bigger size means a bigger buffer. Increase if you need a lot of long strings and don't mind using more memory. One buffer exists for each thread |`--jvm-max-string-size=512` or `max-string-size=512`|
17
-
| --jvm-disable-gc | disable_gc | false | Disables our GC. **Caution:** If you disable our GC you **will** have memory leaks as all Reference types and Native Types are not Garbage collected anymore |`--jvm-disable-gc` or `disable-gc=true`|
18
-
|Not available| jvm_args|| Allows to set your own arguments for the JVM, make sure they are valid if you don't want the JVM not starting properly. Avoid overlapping with others arguments if you want to set debug or jmx. ||
| --jvm-vm-type | vm_type | auto | Defines the VM to run on. Possible values are `auto`, `jvm`, `graal_native_image` and `art`. When set to `graal_native_image` it uses Graal native image. This has no effect on android platform. |`--jvm-vm-type=jvm` or `vm-type=jvm`|
11
+
| --jvm-use-debug | use_debug | false | Defines if the jvm debug server should be started. |`--jvm-use_debug` or `use_debug=true`|
12
+
| --jvm-debug-port | debug_port | 5005 | Defines the port to which you can attach a remote debugger. **Note:** the module `jdk.jdwp.agent` is needed in the embedded JRE if you want to debug your application. If you need `jmx`, also the module `jdk.management.agent` is needed |`--jvm-debug-port=5005` or `debug-port=5005`|
13
+
| --jvm-debug-address | debug_address | localhost | Defines which adresses are allowed for debugging |`--jvm-debug-address=localhost` or `debug-address=localhost`|
14
+
| --jvm-wait-for-debugger | wait_for_debugger | true | Accepted values: `true` or `false`. Defines if the jvm should suspend execution until a remote debugger is attached. Only effective if either `--jvm-debug-port` or `--jvm-debug-address` is set |`--wait-for-debugger` or `wait-for-debugger=true`|
15
+
| --jvm-jmx-port | jmx_port | -1 (disabled) | Defines the jmx port. **Note:** the module `jdk.management.agent` is needed in the embedded JRE to be able to use jmx |`--jvm-jmx-port=5006` or `jmx-port=5006`|
16
+
| --jvm-max-string-size | max_string_size | 512 | Maximum size of strings sent through the buffer. When above that value, strings are sent with a slower JNI Call. A bigger size means a bigger buffer. Increase if you need a lot of long strings and don't mind using more memory. One buffer exists for each thread |`--jvm-max-string-size=512` or `max-string-size=512`|
17
+
| --jvm-disable-gc | disable_gc | false | Disables our GC. **Caution:** If you disable our GC you **will** have memory leaks as all Reference types and Native Types are not Garbage collected anymore |`--jvm-disable-gc` or `disable-gc=true`|
18
+
|--custom-jvm-args | custom_jvm_args|| Allows to set your own arguments for the JVM, make sure they are valid if you don't want the JVM not starting properly. Avoid overlapping with others arguments if you want to set debug or jmx. |`--custom-jvm-args="-Xmx4g -Xms4g"`(Use space as a separator) or `custom_jvm_args=["-Xmx4g", "-Xms4g"]`|
0 commit comments