Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 449 Bytes

File metadata and controls

16 lines (13 loc) · 449 Bytes

Multithreaded Web Server in Java

A simple multi-threaded web server handling concurrent client connections using Java Sockets.

Features

✅ Handles multiple clients concurrently
✅ Uses thread pooling (ExecutorService) for efficiency
✅ Proper resource management for stability

How to Run

  1. Start the server:
    javac Server.java && java Server
  2. Start multiple clients:
    javac Client.java && java Client