About
Code Shipping - Deployment in Vert.x
You have two ways to deploy your Vert.x application. You can provide:
- a fat jar that contains all dependency
- on only the verticle when you have already a vert.x distribution.
This page does not contain the deployment of a application that starts a main class. See Vert.x - Main Method
Articles Related
Type
Fat
Steps:
- Run the jar. Example
java -jar my-fat.jar run ...
Distribution
When your installation got already a vertx distribution, you can only ships the verticle. See Vertx - Distribution Deployment