About
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 Main
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 Distribution Deployment
