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
Copy file name to clipboardExpand all lines: docs/Usage.adoc
+27-5Lines changed: 27 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -4,25 +4,42 @@
4
4
----
5
5
java -jar launcher-<version>.jar
6
6
[--config-file file-path]
7
+
[--contextroot context-root]
7
8
[--http-listener port-number]
8
9
[--https-listener port-number]
9
-
[--contextroot context-root]
10
10
[--libraries jar-filepath[,jar-filepath]*]
11
+
[--precompilejsp[=true|=false]]
11
12
--deploy war-file
12
-
[--generate uber-jar]
13
+
[--generate uber-jar-filepath]
14
+
----
15
+
16
+
----
17
+
java -jar launcher-<version>.jar
18
+
[--config-file file-path]
19
+
--execute subcommand
20
+
subcommand-args...
13
21
----
14
22
15
23
=== Options
16
24
[options="autowidth, header"]
17
25
|===
18
26
| Name | Description | Default Value
19
27
| `--config-file` | Specify the path to configuration file (domain.xml). Do not use `--http-listener` or `--https-listener` when using this option. |
28
+
| `--contextroot` | Specify the context-root. | `/`
29
+
| `--deploy` | Specify the path to WAR file to deploy. This option is mandatory. |
30
+
| `--execute` | Specify the subcommand to execute. |
31
+
| `--generate` | Specify the path to uber JAR to generate. When this option is not specified, the application will run automatically. |
20
32
| `--http-listener` | Specify HTTP port number. Do not use `--config-file` when using this option. | `8080`
21
33
| `--https-listener` |Specify HTTPS port number. Do not use `--config-file` when using this option. | `8181`
22
-
| `--deploy` | Specify the path to WAR file to deploy. This option is mandatory. |
23
-
| `--contextroot` | Specify the context-root. | `/`
24
34
| `--libraries` | Specify the paths to JAR files referred from the application. To specify more than one files, use comma (`,`) as a separator. Files specified in this option will not be included in the generated uber JAR. |
25
-
| `--generate` | Specify the path to uber JAR to generate. When this option is not specified, the application will run automatically. |
35
+
| `--precompilejsp` | Specify `true` to enable JSP precompilation; `false` to disable. | `false`
36
+
|===
37
+
38
+
=== Operands
39
+
[options="autowidth, header"]
40
+
|===
41
+
| Name | Description
42
+
| `subcommand-args` | Specify options and operands for the subcommand.
0 commit comments