通常,Clojure 应用程序具有-main
入口点。我在玩 Compojure:
(defroutes app-routes
(GET "/" [] handle-index)
...)
(def app
(compojure.handler/site app-routes))
此应用程序的入口点在哪里?在 Ring 的某个地方,因为要运行的命令是这样的:lein ring server-headless
?无论如何,命名空间的入口点有什么功能?
通常,Clojure 应用程序具有-main
入口点。我在玩 Compojure:
(defroutes app-routes
(GET "/" [] handle-index)
...)
(def app
(compojure.handler/site app-routes))
此应用程序的入口点在哪里?在 Ring 的某个地方,因为要运行的命令是这样的:lein ring server-headless
?无论如何,命名空间的入口点有什么功能?
Check your project.clj for an entry :ring {:handler yourproject.handler/app}
.
For more info, https://github.com/weavejester/lein-ring