Я пытаюсь использовать различные примеры для начала работы, и я могу получить базовый пример приветствия, работающий с базовым HTML на маршруте как таковой
(ns hello-world
(:use compojure.core ring.adapter.jetty)
(:require [compojure.route :as route]))
(defroutes example
(GET "/" [] "<h1>Hello World Wide Web!</h1>"))
(run-jetty example {:port 8080})
Но когда я пытаюсь использовать html-помощники так
(ns hello-world
(:use compojure ring.adapter.jetty)
(:require [compojure.route :as route]))
(defroutes example
(GET "/" []
(html [:h1 "Hello World"])))
(run-jetty example {:port 8080})
Затем я получаю следующую ошибку
[null] Исключение в потоке "main" java.io.FileNotFoundException: Не удалось найти compojure__init.class или compojure.clj в пути к классам: (core.clj: 1)