我按照https://github.com/pedestal/app-tutorial/wiki/Getting-Started上的教程进行了以下操作:
mkdir pedestal-app-tutorial
cd pedestal-app-tutorial
lein new pedestal-app tutorial-client no-comment
cd tutorial-client
v@mort:$ lein repl
(at this point all the dependencies gets installed and then the repl starts)
nREPL server started on port 37510 on host 127.0.0.1
REPL-y 0.2.1
Clojure 1.5.1
Welcome to pedestal-app! Run (tools-help) to see a list of useful functions.
user=> (start)
user=> (start)
:ok
导航到http://localhost:3000/tutorial-client-dev.html
会导致:
Error processing request!
Exception:
java.lang.StackOverflowError: null
at java.util.regex.Pattern$GroupTail.match (Pattern.java:4615)
java.util.regex.Pattern$BranchConn.match (Pattern.java:4466)
java.util.regex.Pattern$CharProperty.match (Pattern.java:3694)
etc, etc, etc ...
提示可能出错的提示?
使用Leiningen 2.3.2和project.clj
说:io.pedestal/pedestal.app "0.2.1"
答案 0 :(得分:0)
我克隆了https://github.com/pedestal/app-tutorial并毫无问题地运行了它。
后来我在lein new pedestal-app ped-test
目录中意外app-tutorial/
。运行repl和(start)
我很高兴看到我可以访问localhost:3000
上的页面。
作为奖励我现在lein new pedetestal-app
可以在任何地方使用它。
我不知道为什么它开始工作了。