https://github.com/blankscreen-exe/simplehttpserver-java
A simple HTTP server made with JAVA
https://github.com/blankscreen-exe/simplehttpserver-java
http-server java requestparser
Last synced: 2 months ago
JSON representation
A simple HTTP server made with JAVA
- Host: GitHub
- URL: https://github.com/blankscreen-exe/simplehttpserver-java
- Owner: Blankscreen-exe
- Created: 2023-05-07T08:51:09.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-07T10:47:58.000Z (over 2 years ago)
- Last Synced: 2025-07-26T09:05:40.123Z (5 months ago)
- Topics: http-server, java, requestparser
- Language: Java
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple HTTP Server (made in JAVA)
A simple HTTP server made in JAVA sole purpose of which is to parse the requests and send a selected version of response.
## Requirements
- **JDK version:** 20
- **Build Tool:** Apache Maven
```
# https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core
GroupID: com.fasterxml.jackson.core
Artifact ID: jackson-core
Version: 2.14.2
GroupID: com.fasterxml.jackson.core
Artifact ID: jackson-databind
Version: 2.14.2
```
## Routes
- Home - `localhost:8000/`
- Simple Text Response - `localhost:8000/parse/`
- JSON Response - `localhost:8000/parse/json/`
## Further Tasks
- send an HTML response
- send an XML response