https://github.com/eis/micronaut-hello-world
Minimal Micronaut example
https://github.com/eis/micronaut-hello-world
java17 java8 maven
Last synced: about 1 month ago
JSON representation
Minimal Micronaut example
- Host: GitHub
- URL: https://github.com/eis/micronaut-hello-world
- Owner: eis
- License: mit
- Created: 2021-03-15T11:03:04.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-06-11T08:42:21.000Z (almost 3 years ago)
- Last Synced: 2025-06-02T12:02:54.250Z (about 1 year ago)
- Topics: java17, java8, maven
- Language: Batchfile
- Homepage:
- Size: 62.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
This project is the result of running `mn create-app hello-world --build maven` and
adding a controller.
You can use it without micronaut cli though.
Example of use:
```
mvn mn:run
curl localhost:8080
```
or old-style:
```
mvn clean package
java -jar target/hello-world-0.1.jar
curl localhost:8080
```
Running the tests:
```
mvn test
```
## Micronaut 3.9.3 Documentation
- [User Guide](https://docs.micronaut.io/3.9.3/guide/index.html)
- [API Reference](https://docs.micronaut.io/3.9.3/api/index.html)
- [Configuration Reference](https://docs.micronaut.io/3.9.3/guide/configurationreference.html)
- [Micronaut Guides](https://guides.micronaut.io/index.html)
---
## Feature http-client documentation
- [Micronaut HTTP Client documentation](https://docs.micronaut.io/latest/guide/index.html#httpClient)