Skip to content
Gary Verhaegen edited this page Feb 4, 2024 · 8 revisions

Using Ring as the basis for your web application has a number of benefits:

  • Write your application using Clojure functions and maps
  • Run your application in an auto-reloading development server
  • Compile your application into a Java servlet
  • Package your application into a Java war file
  • Take advantage of a large selection of pre-written middleware
  • Deploy your application in cloud environments like Amazon Elastic Beanstalk and Heroku

Ring is the current de facto standard base from which to write web applications in Clojure. Higher level frameworks such as Compojure use Ring as a common basis.

Even though Ring provides only a low-level interface, it is useful to understand how it works even if you plan to use a higher-level interface. Without a basic understanding of Ring, you cannot write middleware, and you may find debugging your application more difficult.

Next Page - Concepts

Clone this wiki locally