Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/daggerok/hello-vertx-app
Vert.x getting started guide
https://github.com/daggerok/hello-vertx-app
vertx vertx-web
Last synced: 29 days ago
JSON representation
Vert.x getting started guide
- Host: GitHub
- URL: https://github.com/daggerok/hello-vertx-app
- Owner: daggerok
- License: mit
- Created: 2019-02-27T14:26:54.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-27T18:08:47.000Z (almost 6 years ago)
- Last Synced: 2024-11-11T15:39:41.896Z (3 months ago)
- Topics: vertx, vertx-web
- Language: Java
- Size: 5.11 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hello-vertx-app
Vert.x getting started quick guide on `Windows OS` by using archetype generator from `maven-fabric8-plugin`## create a project
```batch
mkdir hello-vertx-app
cd hello-vertx-app\mvn -N io.takari:maven:wrapper -Dmaven=3.6.0
mvnw io.fabric8:vertx-maven-plugin:1.0.13:setup^
-DprojectGroupId=com.github.daggerok^
-DprojectArtifactId=hello-vertx-app^
-Dverticle=com.github.daggerok.HelloVertxVerticlemvnw compile vertx:run
```or just run main method in your IDE...
## test
Lastly, update verticle business logic and test things out:
```batch
λ http :8080
HTTP/1.1 200 OK
Content-Length: 4Hey!
```or open in your browser http://127.0.0.1:8080 link
[read Building Reactive Microservices in Java book](./building_reactive_microservices_in_java.pdf)