RFR: 8245095: Implementation of JEP 408: Simple Web Server [v9]
Julia Boes
jboes at openjdk.java.net
Tue Oct 12 10:40:15 UTC 2021
> This change implements a simple web server that can be run on the command-line with `java -m jdk.httpserver`.
>
> This is facilitated by adding an entry point for the `jdk.httpserver` module, an implementation class whose main method is run when the above command is executed. This is the first such module entry point in the JDK.
>
> The server is a minimal HTTP server that serves the static files of a given directory, similar to existing alternatives on other platforms and convenient for testing, development, and debugging.
>
> Additionally, a small API is introduced for programmatic creation and customization.
>
> Testing: tier1-3.
Julia Boes has updated the pull request with a new target base due to a merge or a rebase. The pull request now contains 24 commits:
- Minor rewording of bind address output
- Merge branch 'master' into simpleserver
- Merge branch 'master' into simpleserver
- update output for all interfaces
- use ipv4/ipv6 specific loopback address and add add how-to output for all interfaces
- Merge branch 'master' into simpleserver
- change default bind address from anylocal to loopback
- address PR comments
- Merge branch 'master' into simpleserver
- Merge remote-tracking branch 'origin/simpleserver' into simpleserver
- ... and 14 more: https://git.openjdk.java.net/jdk/compare/b1b66965...e86609d0
-------------
Changes: https://git.openjdk.java.net/jdk/pull/5505/files
Webrev: https://webrevs.openjdk.java.net/?repo=jdk&pr=5505&range=08
Stats: 7181 lines in 42 files changed: 7146 ins; 15 del; 20 mod
Patch: https://git.openjdk.java.net/jdk/pull/5505.diff
Fetch: git fetch https://git.openjdk.java.net/jdk pull/5505/head:pull/5505
PR: https://git.openjdk.java.net/jdk/pull/5505
More information about the core-libs-dev
mailing list