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
- Host: GitHub
- URL: https://github.com/aparzi/restful-hibernate
- Owner: aparzi
- Created: 2017-11-09T16:30:30.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-09T16:45:00.000Z (over 8 years ago)
- Last Synced: 2025-01-14T22:52:46.960Z (over 1 year ago)
- Topics: hibernate, java, rest-api, restful-api, spring, spring-boot
- Language: Shell
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
}
]