Artifacts using module-resolver version 1.3.1
This module defines APIs for defining HTTP endpoints and executing HTTP servers.
A [[ceylon.http.server::Server]] represents a HTTP
server. A new `Server` may be defined using
[[ceylon.http.server::newServer]].
void runServer() {
//create a HTTP server
value server = newServer {
//an endpoint, on the path /hello
Endpoint {
path = startsWith("/hello");
//handle requests to this path
service(Request request, ...
Last Release on Feb 13, 2021
9. WAR
Provides a ServletContextListener for initializing the
Ceylon runtime when a Ceylon WAR is loaded by a Servlet
container. This module will automatically be added to a
WAR when it is created - you should never need to import
this module directly.
Last Release on Feb 13, 2021
- Prev
- 1
- Next