Skip to content

Overview of Application serversλ︎

Application servers for Clojure run an embedded JVM application, such as Jetty or http-kit server.

App servers are started within the Clojure REPL process, as an embedded server. This approach means that during development a server can be restarted to load in new code and immediately update the running application, without having to restart the REPL.

Clojure WebApps simplified stack

Embedded servers in Clojure

Clojure takes a more distributed approach to deployment, starting an embedded application server within the application itself. This approach is more conducive to the container and cloud compute infrastructure. Scaling is achieved by running multiple instances of the application, each on its own embedded application server.

In Java was common to have a single application server with all applications deployed as Jar or War archives. This fitted with the classic architecture of deploying on a single resource rich physical hardware server. Clojure applications can also be deployed in this classic approach if required.

Which Application Server to useλ︎

The most commonly used application servers are in the table below, with Jetty being the most common as it is wrapped by the ring library.

Jetty is the the defacto server in Practicalli guides, with occasional examples using other libraries.

Application Server Description
Eclipse Jetty The original embedded Java application server most commonly used for Clojure web apps
Http-kit High performance Clojure/Java application server
Apache Tomcat Classic Java application server, very common in JVM environments
Netty Java NIO asynchronous event-driven network application framework
Aleph HTTP Clojure (Netty) Ring-compliant server with support for returning Manifold for asynchronous programming

Eclipse Jettyλ︎

Jetty logo

Jetty is the most commonly used application server on the Java Virtual machine.

Eclipse Jetty provides a Web server and javax.servlet container, plus support for HTTP/2, WebSocket, OSGi, JMX, JNDI, JAAS and many other integrations. These components are open source and available for commercial use and distribution.

Eclipse Jetty is used in a wide variety of projects and products, both in development and production. Jetty can be easily embedded in devices, tools, frameworks, application servers, and clusters. See the Jetty Powered page for more uses of Jetty.

The current recommended version for use is Jetty 9

Http-kitλ︎

HTTP Kit is a minimalist, efficient, Ring-compatible HTTP client/server for Clojure.

HTTP Kit uses a event-driven architecture to support highly concurrent a/synchronous web applications. Feature a unified API for WebSocket and HTTP long polling/streaming

The underlying server is implemented in Java with a Clojure wrapper.

Apache Tomcatλ︎

Apache Tomcat logo

Apache Tomcat is an open source implementation of the Java Servlet, JavaServer Pages, Java Expression Language and Java WebSocket technologies. The Java Servlet, JavaServer Pages, Java Expression Language and Java WebSocket specifications are developed under the Java Community Process.

Apache Tomcat software powers numerous large-scale, mission-critical web applications across a diverse range of industries and organizations, example are listed on the PoweredBy page.

Apache Tomcat, Tomcat, Apache, the Apache feather, and the Apache Tomcat project logo are trademarks of the Apache Software Foundation.

Apache Tomcat 9.0 is the current stable version with active development now on version 10.

Tomcat can be run in embedded mode, so it is not necessary to build a WAR file and deploy it in a standalone Tomcat server.

Netty.io logo

Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers & clients.

Netty is a NIO client server framework which enables quick and easy development of network applications such as protocol servers and clients. It greatly simplifies and streamlines network programming such as TCP and UDP socket server.

Netty components

Aleph and Manifoldλ︎

Manifold and Aleph logo

Manifold provides streams focused libraries, such as Aleph HTTP for web applications and TCP/UDP for more general networking.