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

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: 2 months ago
JSON representation

demo spring boot simple rest api to learn the spring framework

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