https://github.com/mdparwez/multithread
multithreaded web server Project in Java
https://github.com/mdparwez/multithread
java multithreading socket-programming thread-pool
Last synced: 12 months ago
JSON representation
multithreaded web server Project in Java
- Host: GitHub
- URL: https://github.com/mdparwez/multithread
- Owner: MdParwez
- Created: 2025-01-23T10:39:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-25T17:11:48.000Z (over 1 year ago)
- Last Synced: 2025-04-09T20:55:32.103Z (about 1 year ago)
- Topics: java, multithreading, socket-programming, thread-pool
- Language: Java
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Multithreaded Web Server and Client:
A Java-based multithreaded web server and client implementation. The server handles multiple client connections simultaneously using threads, demonstrating the basics of concurrent programming with Java.
---
## Features
- **Concurrent Client Handling**:
The server can process multiple client requests simultaneously.
- **Socket Programming**:
Demonstrates usage of `Socket`, `ServerSocket`, and `Thread` in Java.
- **Thread Management**:
Each client connection is handled in its own thread.