Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vietj/vertx-4-hibernate-reactive-demo
Conf demo
https://github.com/vietj/vertx-4-hibernate-reactive-demo
Last synced: about 2 months ago
JSON representation
Conf demo
- Host: GitHub
- URL: https://github.com/vietj/vertx-4-hibernate-reactive-demo
- Owner: vietj
- Created: 2021-03-29T09:14:45.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-04-12T09:58:27.000Z (over 3 years ago)
- Last Synced: 2024-10-20T05:00:27.073Z (3 months ago)
- Language: Java
- Size: 17.6 KB
- Stars: 3
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Demo
### Running Postgres
```
docker run --name some-postgres --rm -e POSTGRES_DB=postgres -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=vertx-in-action -p 5432:5432 postgres
```### Testing
```
curl -X POST -H "Content-Type: application/json" -d '{"id":"spoon","name":"Spoon","price":1.0}' http://localhost:8080/productscurl http://localhost:8080/products
curl http://localhost:8080/products/1
```