5

通常、Clojure アプリには-mainエントリ ポイントがあります。私はCompojureで遊んでいます:

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

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

このアプリケーションのエントリ ポイントはどこですか? 実行するコマンドは次のとおりlein ring server-headlessです。いずれにせよ、名前空間のエントリ ポイントの機能は何ですか?

4

1 に答える 1

5

project.clj のエントリを確認してください:ring {:handler yourproject.handler/app}。詳細については、https://github.com/weavejester/lein-ring

于 2013-10-01T21:21:27.757 に答える