https://github.com/leonardpepa/spring-boot-api-example
demo spring boot simple rest api to learn the spring framework
https://github.com/leonardpepa/spring-boot-api-example
h2database jpa spring spring-boot spring-mvc spring-web
Last synced: 5 months ago
JSON representation
demo spring boot simple rest api to learn the spring framework
- Host: GitHub
- URL: https://github.com/leonardpepa/spring-boot-api-example
- Owner: Leonardpepa
- Created: 2021-08-09T18:28:43.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-08-09T18:50:47.000Z (over 4 years ago)
- Last Synced: 2025-03-16T14:40:17.732Z (9 months ago)
- Topics: h2database, jpa, spring, spring-boot, spring-mvc, spring-web
- Homepage:
- Size: 58.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# spring-boot-api-example
# Demo project to experiment with spring framework and mvc
# Student schema
* Id (auto increamented by db)
* fname (full name)
* email
* rn (registrarion number)
# Get
* localhost:8080/students
* localhost:8080/students/{id}
# Post
* localhost:8080/students
# Delete
* localhost:8080/students/{id}
# Put
* localhost:8080/students{id}
## the project uses maven for managing the dependencies
# dependencies
* spring
* spring-web-starter
* jpa
* h2database