An open API service indexing awesome lists of open source software.

https://github.com/worldofmeow/autumn

Tiny and Easy Java Http Server
https://github.com/worldofmeow/autumn

http java-8 library server web webserver

Last synced: 25 days ago
JSON representation

Tiny and Easy Java Http Server

Awesome Lists containing this project

README

          

# Autumn Http Library
### This Library aims to make Http Servers easy and uncomplicated to integrate into any Project in just a few steps. No External Libraries needed!

## Current Requirements:
- Java 8

## Simple Example:
```java
public static void main(String[] args) {
AutumnHttpServer server = ServerContext.blank().http().start();
server.setRoute("/", new RequestHandler() {
@Override
public void request(SimpleHttpExchange exchange) {
exchange.simple().returnPlainText("Autumn Version: " + Autumn.versionString);
}
});
}
```