This project has as objective to have a rest api build on:
- Gradle
- Java 14
- Micronaut 2.1.1
- MySQL (8.0.20)
The rest will have the resource:
/users
Where the endpoints exposed are:
| Method | Endpoint | Description |
|---|---|---|
| GET | /users | Get all the users |
| POST | /users | Create a new user |
| GET | /users/{user_id} | Get specific user data |
| DELETE | /users/{user_id} | Delete specific user data |