https://github.com/teedjay/quarkus-template
Starting template for experimenting with latest Quarkus features
https://github.com/teedjay/quarkus-template
Last synced: about 2 months ago
JSON representation
Starting template for experimenting with latest Quarkus features
- Host: GitHub
- URL: https://github.com/teedjay/quarkus-template
- Owner: teedjay
- Created: 2019-12-31T20:10:56.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-17T17:14:56.000Z (about 6 years ago)
- Last Synced: 2025-03-03T04:41:50.693Z (over 1 year ago)
- Language: Java
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# quarkus-template
Starting template for experimenting with latest Quarkus features.
- [x] Qute using both Template and VariantTemplate
- [x] Mockito mocks installed manully
- [x] Mockito mocks using @InjectMock
## Curl to test
```
# To get the txt template
curl -i http://localhost:8080/hello -H "Accept: text/plain"
# To get the html template
curl -i http://localhost:8080/hello -H "Accept: text/html"
# To get the xml version
curl -i http://localhost:8080/hello -H "Accept: application/xml"
```
## URL's to test in browser
```
http://localhost:8080/hello
http://localhost:8080/notfound
http://localhost:8080/health
http://localhost:8080/metrics
http://localhost:8080/openapi
http://localhost:8080/swagger-ui
```
## Open the JaCoCo code coverage report
```
open target/site/jacoco/index.html
```