π Manage and explore HTTP response codes visually with images β built using Angular, Spring Boot, and MySQL. Includes login, filtering, and list-saving features.
This project enables users to:
- Browse HTTP response codes with corresponding images.
- Search/filter response codes (e.g., by
2xx
,404
, etc.). - Create, save, edit, and delete custom lists of response codes.
- Basic login/signup functionality (handled on Angular frontend).
- Experience a dynamic and responsive UI.
- Frontend: Angular, TypeScript, HTML, CSS
- Backend: Spring Boot, Spring Data JPA, MySQL
- Authentication: Handled in frontend logic (Angular service + form validation)
- Database: MySQL
- Tools: Postman (API Testing), GitHub
- π€ Login/Signup β Simple authentication system on the frontend with route guarding.
- π CRUD Operations β Manage saved lists of response codes (Create, Retrieve, Update, Delete).
- π Filtering/Search β Dynamic frontend filtering and backend wildcard search (
LIKE '2__'
). - π§ͺ Tested APIs β Verified using Postman.
- π Query Optimization β Efficient queries with documented complexity:
- O(1) for primary key lookups
- O(N) for list retrieval