Skip to content

User Management System to demonstrate Spring Boot Caching

Notifications You must be signed in to change notification settings

Yasas4D/UserManagementSystem

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

User Management System

A Basic user management system for demonstrate cache implementation.

Full guide - Link to the tutorial : https://betterprogramming.pub/spring-boot-caching-from-scratch-aaaf9717f407

API Endpoints

GET /api/users

Get all the users

curl http://localhost:7000/api/users

GET /api/users/{id}

Get a particular user for given id

curl http://localhost:7000/api/users/1

POST /api/register

Register a new user

curl -d '{"name":"Aruna", "age":34,"address":"Galle"}' \
	-H "Content-Type: application/json" \
	-X POST http://localhost:7000/api/register

DELETE /api/users/{id}

Remove a user with given id

curl -X DELETE http://localhost:7000/api/users/1

About

User Management System to demonstrate Spring Boot Caching

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages