Skip to content

Simple REST API which performs CRUD operations on 'user' entity. This project uses Spring Boot, Hibernate ORM and H2 Database.

Notifications You must be signed in to change notification settings

FloofDoggo/Simple-REST-CRUD

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Simple-REST-CRUD

Simple REST API performing CRUD operations.

User entity

FIELD TYPE
id integer
first_name varchar
last_name varchar

RESTful API methods

METHOD PATH DESCRIPTION
GET /v1/api/users gets list of all users
GET /v1/api/users/{id} gets user at specific id
POST /v1/api/users saves user into database
DELETE /v1/api/users/{id} deletes user at specific id
PUT /v1/api/users/{id} update user at specific id

Used technologies

  • Java
  • Spring Boot
  • H2 Database

Licence

This application is shared under the MIT License.

About

Simple REST API which performs CRUD operations on 'user' entity. This project uses Spring Boot, Hibernate ORM and H2 Database.

Topics

Resources

Stars

Watchers

Forks

Languages