Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 days 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 1 year ago)
- Default Branch: master
- Last Pushed: 2023-05-07T10:47:58.000Z (over 1 year ago)
- Last Synced: 2024-11-11T04:30:46.662Z (2 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-coreGroupID: com.fasterxml.jackson.core
Artifact ID: jackson-core
Version: 2.14.2GroupID: 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