Web服务-SpringBoot-JPA
使用 Spring boot、JPA 和 SQL 数据库的项目 Web 服务
使用Java、Spring Boot、JPA技术结合SQL关系数据库创建的Web服务,该应用程序由Heroku展示。
申请可在:
https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/
您可以使用任何 HTTP 请求工具来测试该服务。
例如:https://reqbin.com/
可用服务
用户:
[获取] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/users
[获取] 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
产品:
[获取] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/products
[获取] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/products/id
类别:
[获取] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/categories
[获取] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/categories/id
命令:
[获取] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/orders
[获取] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/orders/id
领域模型
实例模型