This is no longer maintained. Please use https://github.com/jalpedersen/ring-jetty9-adapter instead.
Adapter for Ring using Jetty 8.
Behaves exactly like the normal jetty adapter, but uses Jetty 8 instead of 6 or 7.
For more information, consult the offical Ring site: https://github.com/ring-clojure/ring
"Hello World" in Ring:
(use 'ring.adapter.jetty8)
(defn app [req]
{:status 200
:headers {"Content-Type" "text/html"}
:body "Hello World from Ring and Jetty 8"})
(run-jetty app {:port 8080})
Add the following dependency to your project.clj
and do a lein deps
.
[org.signaut/ring-jetty8-adapter "1.1.6"]