Вебсервисы-SpringBoot-JPA
Веб-сервис проекта с загрузкой Spring, JPA и базой данных SQL
Веб-сервис, созданный с использованием технологий Java, Spring Boot, JPA в сочетании с реляционной базой данных SQL, приложение воспроизводится из Heroku.
Приложение доступно по адресу:
https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/
Вы можете использовать любой инструмент HTTP-запросов для тестирования службы.
Пример: https://reqbin.com/
Доступные услуги
ПОЛЬЗОВАТЕЛЬ:
[GET] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/users
[GET] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/users/id
[ПОСТ] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/users
{
"name": "Maria sales",
"email": "[email protected]",
"phone": "9775979797",
"password": 123456
}
[ПУТ] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/users/id
{
"name": "Bob",
"email": "[email protected]",
"phone": "9775979797"
}
[УДАЛИТЬ] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/users/id
ПРОДУКТ:
[GET] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/products
[GET] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/products/id
КАТЕГОРИЯ:
[GET] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/categories
[GET] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/categories/id
ЗАКАЗ:
[GET] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/orders
[GET] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/orders/id
ДОМЕННАЯ МОДЕЛЬ
ЭКСПРЕМЕНТ МОДЕЛЬ