Servicios web-SpringBoot-JPA
Servicio web de proyecto con Spring boot, JPA y SQL Database
Servicio web creado con tecnologías Java, Spring Boot, JPA en conjunto con base de datos relacional SQL, la aplicación se muestra desde Heroku.
Aplicación disponible en:
https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/
Puede utilizar cualquier herramienta de solicitud HTTP para probar el servicio.
EJ: https://reqbin.com/
Servicios disponibles
USUARIO:
[OBTENER] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/users
[OBTENER] 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
}
[PONER] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/users/id
{
"name": "Bob",
"email": "[email protected]",
"phone": "9775979797"
}
[ELIMINAR] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/users/id
PRODUCTO:
[OBTENER] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/products
[OBTENER] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/products/id
CATEGORÍA:
[OBTENER] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/categories
[OBTENER] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/categories/id
ORDEN:
[OBTENER] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/orders
[OBTENER] https://andrealvesdc-web-serve-sb-jpa.herokuapp.com/orders/id
MODELO DE DOMINIO
MODELO DE INSTANCIA