A simple backend application for user management in an Instagram-like application, built using Spring Boot and MySQL.
- User registration.
- Secure user authentication.
- CRUD operations on user data.
HTTP Method | Endpoint | Description | Request Body |
---|---|---|---|
GET |
/users |
Get all users | None |
GET |
/users/{username} |
Find a user by their username | None |
PUT |
/users |
Update user details | JSON object of User |
DELETE |
/users/{id} |
Delete a user by their ID | None |