我正在使用基座指南中的初学者指南,但是当尝试使用命名空间(需要'test)时,我收到以下错误消息:“用户/eval2012 (REPL:1) 处的执行错误 (FileNotFoundException)。无法在类路径上找到 test__init.class、test.clj 或 test.cljc。”</p>
尝试时会发生同样的事情(需要'你好)
我正在使用 lein repl。
我有一个名为 test 的目录,在 src 下有一个名为 test.clj 的文件
测试/src/test.clj:
(ns test
(:require [io.pedestal.http :as http]
[io.pedesteal.http.route :as route]))
测试/src/hello.clj:
(defn respond-hello [request]
{:status 200 :body “Herllo world”})
有任何想法吗?
测试/deps.edn:
:deps
{io.pedestal/pedestal.service {:mvn/version "0.5.7"}
io.pedestal/pedestal.route {:mvn/version "0.5.7"}
io.pedestal/pedestal.jetty {:mvn/version "0.5.7"}
org.slf4j/slf4j-simple {:mvn/version "1.7.28"}}
:paths ["src"]}