WebServices-SpringBoot-JPA
Project web service with Spring boot, JPA and SQL Database
Web service created with Java, Spring Boot, JPA technologies in conjunction with SQL relational database, the application is deplayed from Heroku.
Application available at:
https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/
You can use any HTTP request tool to test the service.
EX: https://reqbin.com/
Available services
USER:
[GET] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/users
[GET] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/users/id
[POST] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/users
{
"name": "Maria sales",
"email": "[email protected]",
"phone": "9775979797",
"password": 123456
}
[PUT] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/users/id
{
"name": "Bob",
"email": "[email protected]",
"phone": "9775979797"
}
[DELETE] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/users/id
PRODUCT:
[GET] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/products
[GET] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/products/id
CATEGORY:
[GET] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/categories
[GET] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/categories/id
ORDER:
[GET] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/orders
[GET] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/orders/id
DOMAIN MODEL
INSTANCE MODEL