An open API service indexing awesome lists of open source software.

https://github.com/aparzi/restful-hibernate

A simple project realized with hibernate and spring boot
https://github.com/aparzi/restful-hibernate

hibernate java rest-api restful-api spring spring-boot

Last synced: about 2 months ago
JSON representation

A simple project realized with hibernate and spring boot

Awesome Lists containing this project

README

          

# RESTful-hibernate
SETUP

Create a db with name db_example

Into db, create a student table with the following fields


  • Freshman

  • Name

  • Surname




TESTING ENDPOINTS

Get all Student using GET http://localhost/api/students



[
{
"freshman": 123456,
"name": "Angelo",
"surname": "Parziale"
}
]