5

通常,Clojure 应用程序具有-main入口点。我在玩 Compojure:

(defroutes app-routes
   (GET "/" [] handle-index)
   ...)

(def app
  (compojure.handler/site app-routes))

此应用程序的入口点在哪里?在 Ring 的某个地方,因为要运行的命令是这样的:lein ring server-headless?无论如何,命名空间的入口点有什么功能?

4

1 回答 1

5

Check your project.clj for an entry :ring {:handler yourproject.handler/app}. For more info, https://github.com/weavejester/lein-ring

于 2013-10-01T21:21:27.757 回答