Liking cljdoc? Tell your friends :D

#tesla-jetty

This library provides a component, that adds an embedded jetty server to tesla-microservice. This componenent has been extracted from tesla-microservice in order to allow for operation with other, especially non-blocking, server implementations as well as headless operation.

Clojars Project

Build Status Dependencies Status

Configuration

The config :server-port will be used as port. Default is 8080.

Usage

Because tesla-microservice is a provided dependency, you must always specify two dependencies in your project clj:

:dependencies [[de.otto/tesla-microservice "0.1.15"]
               [de.otto/tesla-jetty "0.1.0"]]

Add the server to the base-system before starting it. Pass in additional dependencies of the server (e.g. :my-page):

  (system/start (serving-with-jetty/add-server (system/base-system {}) :my-page))

See tesla-examples/simple-example for an example. The more elegant syntax with the ->-threading macro would look like this:

(system/start
  (-> (system/base-system {})
      (assoc :my-page (new-page))
      (serving-with-jetty/add-server :my-page)))

See tesla-examples/mongo-example.

Compatibility

Versions 0.1.0 and above of tesla-jetty are compatible with versions 0.1.15 and above of tesla-microservice.

License

Apache License

Can you improve this documentation? These fine people already did:
Christian Stamm & carl.duevel
Edit on GitHub

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close