Skip to content

Latest commit

 

History

History
80 lines (57 loc) · 2.45 KB

README.md

File metadata and controls

80 lines (57 loc) · 2.45 KB

sun-http-server maven-central

A repackaged and refactored sun http server, created in the original form by Oracle and formerly embedded in the jdk. Distributed under the GNU v2 license.

This server, built on non-blocking sockets, is a really good lightweight solution that has everything you need for full use in various projects. Up to this point, it was ignored by most of the community due to its location in sun packages. Now this restriction has been removed.

Getting Started

To install it, you will need:

  • Java 8+
  • SLF4J implementation (optional)
  • Maven/Gradle

Installing

Gradle dependency

dependencies {
    implementation group: 'io.github.amayaframework', name: 'http-server', version: 'LATEST'
}

Maven dependency

<dependency>
    <groupId>io.github.amayaframework</groupId>
    <artifactId>http-server</artifactId>
    <version>LATEST</version>
</dependency>

Usage example

The code below will start the server associated with the address localhost:8000. There will be one handler on the server responding to a route starting with /hello. The response will contain code 200 and an empty body. He will respond to all other requests with the code 404.

public class Server {
    public static void main(String[] args) throws IOException {
        HttpServer server = HttpServer.create(new InetSocketAddress(8000), 0);
        server.createContext("/hello", exchange -> {
            exchange.sendResponseHeaders(HttpCode.OK, 0);
            exchange.close();
        });
        server.start();
    }
}

Built With

  • Gradle - Dependency management
  • slf4j - Logging facade

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the GNU GENERAL PUBLIC LICENSE Version 2 - see the LICENSE file for details

Also, according to the requirements, the original inserts of Oracle license headers are preserved in the original source files.

Acknowledgments

Thanks to all the sun developers who participated in the creation of this server.