README – Toy HTTP Server This is a small Java-based HTTP server built from scratch. It's meant to be simple, easy to understand, and useful for learning how basic web servers work.
What it does Handles HTTP requests
Lets you define routes using annotations
Supports parallel request handling
Passes request and response objects to your handler methods
How to use:
- Clone the repo, build using maven.
- Add it to your own Java app as a dependency.
- Define routes using annotations (checkout for working demo: https://github.com/printSamarth/ApiUsingBhaiServer)