* If you request @http://localhost:8080/@ in your browser the @ring.handler.dump@ handler will respond with an HTML page representing the request map that it received (see the @SPEC@ for details on the request map).
* If you request @http://localhost:8080/clojure.png@, the @ring.middleware.file@ middleware will detect that there is a @clojure.png@ file in the app's @public@ directory and return that image as a response.
@@ -32,12 +32,12 @@ h2. Included Libs
* @ring.adapter.httpcore@: Adapter for the Apache HttpCore webserver.
* @ring.middleware.file@: Middleware that serves static files out of a public directory.
* @ring.middleware.file-info@: Middleware that augments response headers with info about File responses.
- * @ring.middleware.static@: Middleware that serves static files with specified prefixes out of a public directory.
- * @ring.middleware.stacktrace@: Middleware that catches exceptions and displays readable stacktraces for debugging.
+ * @ring.middleware.lint@: Linter for the Ring interface, ensures compliance with the Ring spec.
* @ring.middleware.reload@: Middleware to automatically reload selected libs before each requests, minimizing server restarts.
+ * @ring.middleware.stacktrace@: Middleware that catches exceptions and displays readable stacktraces for debugging.
+ * @ring.middleware.static@: Middleware that serves static files with specified prefixes out of a public directory.
* @ring.handler.dump@: Handler that dumps request maps as HTML responses for debugging.
- * @ring.util.builder@: Helpers for composing Ring apps from multiple handlers and middleware.
- * @ring.util.lint@: Linter for the Ring interface, ensures compliance with the Ring spec.
+ * @ring.util.servlet@: Utilities for interfacing with Java Servlets.
0 comments on commit
97eb2f9